File tree 1 file changed +11
-1
lines changed
1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change 29
29
version : ' 1.11'
30
30
31
31
- name : Load Julia packages from cache
32
- uses : julia-actions/cache@v2
32
+ id : julia-cache
33
+ uses : penelopeysm/julia-cache@main
33
34
with :
34
35
cache-name : julia-cache;${{ hashFiles('**/Manifest.toml') }}
35
36
delete-old-caches : false
@@ -57,12 +58,21 @@ jobs:
57
58
58
59
- name : Save _freeze folder
59
60
id : cache-save
61
+ if : always()
60
62
uses : actions/cache/save@v4
61
63
with :
62
64
path : |
63
65
./_freeze/
64
66
key : ${{ runner.os }}-${{ hashFiles('**/Manifest.toml') }}-${{ hashFiles('**/index.qmd') }}
65
67
68
+ - name : Save Julia depot cache
69
+ id : julia-cache-save
70
+ if : always() && steps.julia-cache.outputs.cache-hit != 'true'
71
+ uses : actions/cache/save@v4
72
+ with :
73
+ path : ${{ steps.julia-cache.outputs.cache-paths }}
74
+ key : ${{ steps.julia-cache.outputs.cache-key }}
75
+
66
76
- name : Deploy to GitHub Pages
67
77
uses : JamesIves/github-pages-deploy-action@v4
68
78
with :
You can’t perform that action at this time.
0 commit comments