From 9c275d05280d48294527c02f5f598353997892f9 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 | 11 +++++++++++ 1 file changed, 11 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..48d58cd --- /dev/null +++ b/.gitea/workflows/nix.yaml @@ -0,0 +1,11 @@ +name: Nix Build +on: [push] + +jobs: + all-in-one: + runs-on: [native] + name: nix build + steps: + - uses: actions/checkout@v4 + - run: nix build --no-link .#packages.x86_64-linux.unstable +