From 7deb3fe8d92c613d8a7faac7ff28f610009877c6 Mon Sep 17 00:00:00 2001 From: tomoron Date: Thu, 23 Apr 2026 17:24:13 +0200 Subject: [PATCH] add autoupdate (test probably broken) --- .gitea/workflows/auto_update.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .gitea/workflows/auto_update.yaml diff --git a/.gitea/workflows/auto_update.yaml b/.gitea/workflows/auto_update.yaml new file mode 100644 index 0000000..7b6604a --- /dev/null +++ b/.gitea/workflows/auto_update.yaml @@ -0,0 +1,18 @@ +name: update the nix flake lock automatically every week +run-name: update +on: + schedule: + - cron: "0 4 * * 1" + +jobs: + update: + runs-on: ubuntu-latest + steps: + - name: get repo + uses: actions/checkout@v4.2.2 + + - name: install nix + uses: https://github.com/cachix/install-nix-action@v31 + + - name: run the update + run: nix flake update