We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a7b04ee commit af54a9fCopy full SHA for af54a9f
1 file changed
.github/workflows/render-and-publish.yml
@@ -74,8 +74,7 @@ jobs:
74
~/.m2/repository
75
~/.gitlibs
76
~/.deps.clj
77
- key: cljdeps-${{ hashFiles('deps.edn') }}
78
- restore-keys: cljdeps-
+ key: cljdeps-${{ runner.os }}
79
80
- name: Detect changed Clojure sources
81
if: github.event_name == 'push' && steps.artifact_status.outputs.site_ok == 'true'
@@ -104,6 +103,12 @@ jobs:
104
103
- name: Build notebooks (changed set or full when none)
105
run: clojure -M:clay -A:markdown ${{ steps.changed_clj.outputs.files }}
106
+ - name: Cache Quarto
107
+ uses: actions/cache@v3
108
+ with:
109
+ path: ~/.cache/quarto
110
+ key: quarto-${{ runner.os }}
111
+
112
- name: Set up Quarto
113
uses: quarto-dev/quarto-actions/setup@v2
114
with:
0 commit comments