Skip to content

Commit 11e0460

Browse files
committed
fix: cache name
1 parent 9e4b10c commit 11e0460

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.github/workflows/SnoopCompile.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,11 @@ jobs:
3838
arch: ${{ matrix.arch }}
3939
- uses: actions/cache@v2
4040
env:
41-
cache-name: cache-julia-modules
41+
cache-name: cache-julia-SnoopCompile
4242
with:
43-
path: ~/.julia
43+
path: |
44+
~/.julia
45+
!~/.julia/compiled
4446
key: ${{ runner.os }}-${{ matrix.version }}-${{ env.cache-name }}
4547

4648
- name: Install dependencies

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ jobs:
2828
arch: ${{ matrix.arch }}
2929
- uses: actions/cache@v2
3030
env:
31-
cache-name: cache-julia-modules
31+
cache-name: cache-julia-artifacts
3232
with:
33-
path: ~/.julia
33+
path: ~/.julia/artifacts
3434
key: ${{ runner.os }}-${{ matrix.version }}-${{ env.cache-name }}
3535

3636
- uses: julia-actions/julia-buildpkg@latest

0 commit comments

Comments
 (0)