Skip to content

Commit

Permalink
Separated nix caches.
Browse files Browse the repository at this point in the history
  • Loading branch information
bwbush committed Sep 16, 2024
1 parent 056940d commit 3602469
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ jobs:
id: nix-cache
with:
path: /tmp/nixcache
key: ${{ runner.os }}-nix-${{ hashFiles('flake.lock') }}
restore-keys: ${{ runner.os }}-nix-
key: ${{ runner.os }}-nix-typecheck-${{ hashFiles('flake.lock') }}
restore-keys: ${{ runner.os }}-nix-typecheck-
- name: 🛠️ Install Nix
uses: cachix/install-nix-action@v21
with:
Expand Down Expand Up @@ -57,8 +57,8 @@ jobs:
id: nix-cache
with:
path: /tmp/nixcache
key: ${{ runner.os }}-nix-${{ hashFiles('flake.lock') }}
restore-keys: ${{ runner.os }}-nix-
key: ${{ runner.os }}-nix-compile-${{ hashFiles('flake.lock') }}
restore-keys: ${{ runner.os }}-nix-compile-
- name: 🛠️ Install Nix
uses: cachix/install-nix-action@v21
with:
Expand Down Expand Up @@ -94,8 +94,8 @@ jobs:
id: nix-cache
with:
path: /tmp/nixcache
key: ${{ runner.os }}-nix-${{ hashFiles('flake.lock') }}
restore-keys: ${{ runner.os }}-nix-
key: ${{ runner.os }}-nix-tests-${{ hashFiles('flake.lock') }}
restore-keys: ${{ runner.os }}-nix-tests-
- name: 🛠️ Install Nix
uses: cachix/install-nix-action@v21
with:
Expand Down

0 comments on commit 3602469

Please sign in to comment.