Skip to content

Commit d97a955

Browse files
committed
chore: clear nix cache on builder prior to install
1 parent 5877575 commit d97a955

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/test.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,11 @@ jobs:
1313
steps:
1414
- name: Checkout Repo
1515
uses: actions/checkout@v4
16-
16+
17+
- name: Clear Nix cache
18+
run: |
19+
sudo rm -rf /home/runner/.cache/nix
20+
1721
- uses: DeterminateSystems/nix-installer-action@main
1822
with:
1923
extra-conf: |
@@ -41,6 +45,9 @@ jobs:
4145
POSTGRES_PASSWORD: password
4246
steps:
4347
- uses: actions/checkout@v4
48+
- name: Clear Nix cache
49+
run: |
50+
sudo rm -rf /home/runner/.cache/nix
4451
- uses: DeterminateSystems/nix-installer-action@main
4552
with:
4653
extra-conf: |

0 commit comments

Comments
 (0)