From 7f209d95ceb1f036737d0e2eb940a2a4b2ae9468 Mon Sep 17 00:00:00 2001 From: Andrew Rioux Date: Tue, 21 Oct 2025 09:57:30 -0400 Subject: [PATCH] feat: add action to build and upload sparse --- .gitea/workflows/build-artifacts.yaml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .gitea/workflows/build-artifacts.yaml diff --git a/.gitea/workflows/build-artifacts.yaml b/.gitea/workflows/build-artifacts.yaml new file mode 100644 index 0000000..362a64c --- /dev/null +++ b/.gitea/workflows/build-artifacts.yaml @@ -0,0 +1,22 @@ +name: Build sparse 0.5 without FreeBSD support +on: + push: + branches: + - flake + +jobs: + build-and-upload: + runs-on: native + steps: + - name: check out repository code + uses: actions/checkout@v4 + + - name: Build flake + run: | + /run/current-system/sw/bin/nix build .#sparse-05-client + + - name: Upload resulting binary + uses: actions/upload-artifact@v4 + with: + name: sparse-05-client + path: result/bin/sparse-05-client