From eed719674fb0f90cd19e62c7019566c190d202d9 Mon Sep 17 00:00:00 2001 From: Slendi Date: Fri, 12 Dec 2025 01:05:57 +0200 Subject: [PATCH] Add CI Signed-off-by: Slendi --- .github/workflows/build.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..7429a31 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,29 @@ +name: Build project + +on: + push: + branches: + - master + pull_request: + branches: + - master + +jobs: + build: + name: Build + runs-on: ubuntu-22.04 + permissions: + id-token: write + contents: read + steps: + - name: git checkout + uses: actions/checkout@v3 + - name: Install Nix + uses: DeterminateSystems/nix-installer-action@main + - name: Building monolith package + run: nix build .#monolith + - name: Upload artifact + uses: actions/upload-artifact@v4 + with: + name: result + path: result