Skip to content

Commit

Permalink
refactor: update project name
Browse files Browse the repository at this point in the history
  • Loading branch information
jakehamilton committed Feb 3, 2024
1 parent 7485fd2 commit 70df5e6
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions .github/workflows/flakehub-publish-tagged.yml
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
name: "Publish tags to FlakeHub"
name: 'Publish tags to FlakeHub'
on:
push:
tags:
- "v?[0-9]+.[0-9]+.[0-9]+*"
- 'v?[0-9]+.[0-9]+.[0-9]+*'
workflow_dispatch:
inputs:
tag:
description: "The existing tag to publish to FlakeHub"
type: "string"
description: 'The existing tag to publish to FlakeHub'
type: 'string'
required: true
jobs:
flakehub-publish:
runs-on: "ubuntu-latest"
runs-on: 'ubuntu-latest'
permissions:
id-token: "write"
contents: "read"
id-token: 'write'
contents: 'read'
steps:
- uses: "actions/checkout@v3"
- uses: 'actions/checkout@v3'
with:
ref: "${{ (inputs.tag != null) && format('refs/tags/{0}', inputs.tag) || '' }}"
- uses: "DeterminateSystems/nix-installer-action@main"
- uses: "DeterminateSystems/flakehub-push@main"
- uses: 'DeterminateSystems/nix-installer-action@main'
- uses: 'DeterminateSystems/flakehub-push@main'
with:
visibility: "public"
name: "snowfallorg/thaw"
tag: "${{ inputs.tag }}"
visibility: 'public'
name: 'snowfallorg/whats-in-my-store'
tag: '${{ inputs.tag }}'

0 comments on commit 70df5e6

Please sign in to comment.