diff options
| author | seth <[email protected]> | 2023-08-24 08:06:51 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2023-08-24 08:08:42 -0400 |
| commit | 871a267bf668336a9326ffa3f263932e8f3a5b60 (patch) | |
| tree | 2a024be9d8f69c47d265660ad8f4effc490cd0c6 | |
| parent | fab63c5065d06e577dab7faec41a8365b80c48e4 (diff) | |
actions: add flakehub-publish workflow
| -rw-r--r-- | .github/workflows/flakehub-publish.yaml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/.github/workflows/flakehub-publish.yaml b/.github/workflows/flakehub-publish.yaml new file mode 100644 index 0000000..af07ec7 --- /dev/null +++ b/.github/workflows/flakehub-publish.yaml @@ -0,0 +1,20 @@ +name: flakehub publish + +on: + push: + branches: [main] + +jobs: + publish: + runs-on: ubuntu-latest + permissions: + id-token: write + contents: read + + steps: + - uses: actions/checkout@v3 + - uses: DeterminateSystems/nix-installer-action@main + - uses: DeterminateSystems/flakehub-push@main + with: + visibility: "public" + rolling: true |
