From 46b0c9168fa2d15c0b9d1d0d2cc3c6aa0bd7543f Mon Sep 17 00:00:00 2001 From: shayne Date: Thu, 24 Aug 2023 11:09:16 -0400 Subject: [PATCH] .github: update flakehub workflow to support existing tags (#9067) This adds a workflow_dispatch input to the update-flakehub workflow that allows the user to specify an existing tag to publish to FlakeHub. This is useful for publishing a version of a package that has already been tagged in the repository. Updates #9008 Signed-off-by: Shayne Sweeney --- .github/workflows/flakehub-publish-tagged.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/flakehub-publish-tagged.yml b/.github/workflows/flakehub-publish-tagged.yml index f8eaca1da..7c9cb055d 100644 --- a/.github/workflows/flakehub-publish-tagged.yml +++ b/.github/workflows/flakehub-publish-tagged.yml @@ -4,16 +4,24 @@ on: push: tags: - "v[0-9]+.*[02468].[0-9]+" - + workflow_dispatch: + inputs: + tag: + description: "The existing tag to publish to FlakeHub" + type: "string" + required: true jobs: - publish: + flakehub-publish: runs-on: "ubuntu-latest" permissions: id-token: "write" contents: "read" steps: - 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" with: visibility: "public" + tag: "${{ inputs.tag }}"