diff options
| author | seth <[email protected]> | 2023-12-21 19:18:19 -0500 |
|---|---|---|
| committer | seth <[email protected]> | 2023-12-21 19:18:19 -0500 |
| commit | b0076c4c94c556597ae4acdd978fe97a685a3dd8 (patch) | |
| tree | e4ab514aab06178ec239f9aeb95a8cc87c559b6a /.github | |
| parent | 8695d9d41441da0326d0260bae2f4962f32bfea0 (diff) | |
actions: publish to flakehub
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/flakehub-publish.yaml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/.github/workflows/flakehub-publish.yaml b/.github/workflows/flakehub-publish.yaml new file mode 100644 index 0000000..3e7bb4e --- /dev/null +++ b/.github/workflows/flakehub-publish.yaml @@ -0,0 +1,24 @@ +name: Publish on Flakehub + +on: + push: + branches: [main] + +jobs: + publish: + runs-on: ubuntu-latest + + permissions: + id-token: write + + steps: + - uses: actions/checkout@v4 + + - name: Install Nix + uses: DeterminateSystems/nix-installer-action@v9 + + - name: Push to Flakehub + uses: DeterminateSystems/flakehub-push@v3 + with: + visibility: "public" + rolling: true |
