From 24c6f62b73394dfe826a770a48c461cd301cd1d9 Mon Sep 17 00:00:00 2001 From: Martin Wimpress Date: Thu, 2 May 2024 13:41:16 +0100 Subject: [PATCH] feat: publish tagged releases to flakehub --- .github/workflows/flakehub-publish.yml | 28 ++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/flakehub-publish.yml diff --git a/.github/workflows/flakehub-publish.yml b/.github/workflows/flakehub-publish.yml new file mode 100644 index 0000000..b64d5cb --- /dev/null +++ b/.github/workflows/flakehub-publish.yml @@ -0,0 +1,28 @@ +name: "Publish tags to FlakeHub" +on: + push: + tags: + - "v?[0-9]+.[0-9]+.[0-9]+*" + workflow_dispatch: + inputs: + tag: + description: "The existing tag to publish to FlakeHub" + type: "string" + required: true +jobs: + 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/magic-nix-cache-action@main" + - uses: "DeterminateSystems/flakehub-push@main" + with: + visibility: "public" + name: "quickemu-project/quickemu" + tag: "${{ inputs.tag }}"