From 30a8c1d01ce0f13e3545edf1200f1ebf5c9c6dad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=A9tan=20Lepage?= <33058747+GaetanLepage@users.noreply.github.com> Date: Mon, 28 Aug 2023 10:09:41 +0200 Subject: [PATCH] Add flakehub workflow --- .../workflows/flakehub-publish-rolling.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/flakehub-publish-rolling.yml diff --git a/.github/workflows/flakehub-publish-rolling.yml b/.github/workflows/flakehub-publish-rolling.yml new file mode 100644 index 00000000..9af8afc3 --- /dev/null +++ b/.github/workflows/flakehub-publish-rolling.yml @@ -0,0 +1,19 @@ +name: "Publish every Git push to main to FlakeHub" +on: + push: + branches: + - "main" +jobs: + flakehub-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: + name: "nix-community/nixvim" + rolling: true + visibility: "public"