From 0550bec1a9e964e71db2c02fbdb04e8a56a9d776 Mon Sep 17 00:00:00 2001 From: Alexandre_1a Date: Sat, 20 Jun 2026 12:53:51 +0200 Subject: [PATCH] Ajouter .gitea/workflows/Build Framework --- .gitea/workflows/Build Framework | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .gitea/workflows/Build Framework diff --git a/.gitea/workflows/Build Framework b/.gitea/workflows/Build Framework new file mode 100644 index 0000000..36048b7 --- /dev/null +++ b/.gitea/workflows/Build Framework @@ -0,0 +1,24 @@ +name: Bump Flake + +on: + workflow_dispatch: + schedule: + - cron: "0 3 1 * *" # At 3 on the first day of the month (Monday) + + jobs: + bump: + runs-on: ubuntu-latest + + steps: + - name: Install nix + uses: DeterminateSystems/nix-installer-action@main + + - name: Checkout + uses: actions/checkout@v4 + + + - name: Build bumped flake (only one host) + run: nix build .\#nixosConfigurations.FW16.config.system.build.toplevel + + - name: Check bumped flake + run: nix flake check