From 640f5573f1ca00597b74ea4e7399df67c1eb5e79 Mon Sep 17 00:00:00 2001 From: Luc Perkins Date: Tue, 17 Feb 2026 11:17:44 -0300 Subject: [PATCH] Publish rolling releases to FlakeHub --- .../workflows/flakehub-publish-rolling.yaml | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/flakehub-publish-rolling.yaml diff --git a/.github/workflows/flakehub-publish-rolling.yaml b/.github/workflows/flakehub-publish-rolling.yaml new file mode 100644 index 00000000..3d2013fc --- /dev/null +++ b/.github/workflows/flakehub-publish-rolling.yaml @@ -0,0 +1,23 @@ +name: Publish every Git push to integration to FlakeHub +on: + push: + branches: + - integration +jobs: + flakehub-publish: + runs-on: ubuntu-latest + permissions: + id-token: write + contents: read + steps: + - uses: actions/checkout@v5 + with: + persist-credentials: false + - uses: DeterminateSystems/determinate-nix-action@v3 + - uses: DeterminateSystems/flakehub-push@main + with: + name: DeterminateSystems/nix-bindings-rust + rolling: true + visibility: private + include-output-paths: true +