From c7e4109100dcace4d15af2f0edbbf0db3d5ac48a Mon Sep 17 00:00:00 2001 From: Pierre Beucher Date: Thu, 28 Dec 2023 14:15:54 +0100 Subject: [PATCH] build: publish Flake to FlakeHub on release --- .github/workflows/flakehub.yml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .github/workflows/flakehub.yml diff --git a/.github/workflows/flakehub.yml b/.github/workflows/flakehub.yml new file mode 100644 index 0000000..2bd134a --- /dev/null +++ b/.github/workflows/flakehub.yml @@ -0,0 +1,31 @@ +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/flakehub-push@main" + with: + visibility: "public" + name: "PierreBeucher/novops" + tag: "${{ inputs.tag }}"