diff --git a/.github/workflows/nix-develop.yml b/.github/workflows/nix-develop.yml index 1b1257b6..9b34a463 100644 --- a/.github/workflows/nix-develop.yml +++ b/.github/workflows/nix-develop.yml @@ -53,3 +53,20 @@ jobs: # If you chose API tokens for write access OR if you have a private cache authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' - run: nix develop --profile devShell + build: + runs-on: ubuntu-latest + name: "nix build" + timeout-minutes: 35 + steps: + - uses: actions/checkout@v3 + with: + # Nix Flakes doesn't work on shallow clones + fetch-depth: 0 + - uses: cachix/install-nix-action@v18 + - uses: cachix/cachix-action@v12 + with: + name: zellij + # If you chose API tokens for write access OR if you have a private cache + authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' + - run: | + nix build || nix build --substituters 'https://cache.nixos.org' --extra-substituters '' diff --git a/.github/workflows/nix.yml b/.github/workflows/nix.yml deleted file mode 100644 index e4318ba5..00000000 --- a/.github/workflows/nix.yml +++ /dev/null @@ -1,28 +0,0 @@ -name: nix - -on: - push: - branches: - - main - pull_request: - branches: - - main - -jobs: - build: - runs-on: ubuntu-latest - name: "nix build" - timeout-minutes: 35 - steps: - - uses: actions/checkout@v3 - with: - # Nix Flakes doesn't work on shallow clones - fetch-depth: 0 - - uses: cachix/install-nix-action@v18 - - uses: cachix/cachix-action@v12 - with: - name: zellij - # If you chose API tokens for write access OR if you have a private cache - authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' - - run: | - nix build || nix build --substituters 'https://cache.nixos.org' --extra-substituters ''