From 165806ba2c5137fed05dae28003fe4ba339a0e65 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Madeleine=20Sydney=20=C5=9Alaga?= Date: Sun, 1 Mar 2026 02:45:45 -0700 Subject: [PATCH] feat: build action --- .gitea/workflows/build.yaml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .gitea/workflows/build.yaml diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml new file mode 100644 index 0000000..a2f453b --- /dev/null +++ b/.gitea/workflows/build.yaml @@ -0,0 +1,29 @@ +name: build +run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀 +on: [push] + +jobs: + + build-sydpc: + runs-on: nixos + steps: + - name: Check out repository code + uses: actions/checkout@v4 + - name: build sydpc + run: nix build -L .#nixosConfigurations.sydpc.config.system.build.toplevel + + build-fruitbook: + runs-on: nixos + steps: + - name: Check out repository code + uses: actions/checkout@v4 + - name: build fruitbook + run: nix build -L .#nixosConfigurations.fruitbook.config.system.build.toplevel + + build-deertopia: + runs-on: nixos + steps: + - name: Check out repository code + uses: actions/checkout@v4 + - name: build deertopia + run: nix build -L .#nixosConfigurations.deertopia.config.system.build.toplevel