We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b25d535 commit 23df695Copy full SHA for 23df695
1 file changed
.github/workflows/maven.yml
@@ -18,6 +18,8 @@ jobs:
18
steps:
19
- uses: actions/checkout@v4
20
- uses: cachix/install-nix-action@v31
21
+ - name: test
22
+ run: ls /nix/store
23
- uses: actions/cache/restore@v4
24
id: cache
25
with:
@@ -32,7 +34,7 @@ jobs:
32
34
if: steps.cache.outputs.cache-hit != 'true'
33
35
run: |
36
nix-build --out-link dependencies nix/github-workflow-dependencies.nix
- nix-store --export $(nix-store --query --requisites dependencies) > cache-closure.nar
37
+ nix-store --export $(find /nix/store -mindepth 1 -maxdepth 1) > cache-closure.nar
38
- uses: actions/cache/save@v4
39
40
0 commit comments