We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce7f58c commit bfb2edbCopy full SHA for bfb2edb
1 file changed
.github/workflows/ci.yml
@@ -6,6 +6,9 @@ on:
6
push:
7
branches:
8
- main
9
+ schedule:
10
+ - cron: '0 0 * * sun'
11
+ - cron: '0 12 * * wed'
12
13
concurrency:
14
group: ${{ github.workflow }}-${{ github.ref }}
@@ -238,6 +241,13 @@ jobs:
238
241
with:
239
242
python-version: 3.12
240
243
244
+ - name: Restore cache for Hugo
245
+ uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
246
+ with:
247
+ path: ./hugo_cache/
248
+ # This should pick up the same cache as the build_wheels job
249
+ key: ${{ runner.os }}-hugo-${{ steps.setup-go.outputs.go-version }}
250
+
251
- name: Install Hugo
252
run: pip install -e .
253
0 commit comments