From f350acd09f1c63c8fdefacad4086913e12f3f5f4 Mon Sep 17 00:00:00 2001 From: atagen Date: Thu, 26 Jun 2025 01:32:59 +1000 Subject: [PATCH] chore: create ci workflow --- .gitea/workflows/nix.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .gitea/workflows/nix.yaml diff --git a/.gitea/workflows/nix.yaml b/.gitea/workflows/nix.yaml new file mode 100644 index 0000000..803ac65 --- /dev/null +++ b/.gitea/workflows/nix.yaml @@ -0,0 +1,13 @@ +name: Nix Build +on: [push] + +jobs: + all-in-one: + runs-on: [native] + name: nix build + cache push + steps: + - uses: actions/checkout@v4 + - run: nix build --out-link ./unstable .#packages.x86_64-linux.unstable + - run: attic login ci http://127.0.0.1:8009 $ATTICKEY + - run: attic push ci ./unstable +