From 2cae64ad55fe550cc758eaa0abca1a7472e66b6e Mon Sep 17 00:00:00 2001 From: chessai Date: Wed, 11 Sep 2024 09:59:10 -0500 Subject: [PATCH] only build binary bundle --- .github/workflows/nix.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/nix.yml b/.github/workflows/nix.yml index d55f5824e..f1bc8ee80 100644 --- a/.github/workflows/nix.yml +++ b/.github/workflows/nix.yml @@ -39,15 +39,15 @@ jobs: - name: Build and cache artifacts run: | - echo Building the project and its devShell - nix build .#check --log-lines 500 --show-trace --accept-flake-config + #echo Building the project and its devShell + #nix build .#check --log-lines 500 --show-trace --accept-flake-config echo Build the bundle nix build .#pact-binary-bundle --log-lines 500 --show-trace --out-link pact-binary-bundle --accept-flake-config tar -zcvf pact-binary-bundle.${{ matrix.os }}.tar.gz $(readlink pact-binary-bundle) - echo Build the recursive output - nix build .#recursive.allDerivations --log-lines 500 --show-trace --accept-flake-config + #echo Build the recursive output + #nix build .#recursive.allDerivations --log-lines 500 --show-trace --accept-flake-config - name: Publish the bundle uses: actions/upload-artifact@v4