We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1df967c commit 94b10b0Copy full SHA for 94b10b0
.github/workflows/ci.yml
@@ -63,6 +63,7 @@ jobs:
63
- name: Save cached Linkcheck
64
id: cache-linkcheck-save
65
if: github.event_name == 'schedule'
66
+ continue-on-error: true
67
uses: actions/cache/save@v4
68
with:
69
path: book/linkcheck/cache.json
ci/linkcheck.sh
@@ -8,7 +8,7 @@ set_github_token() {
8
}
9
10
# https://docs.github.com/en/actions/reference/environment-variables
11
-if [ yes ] ; then # running in scheduled job
+if [ "$GITHUB_EVENT_NAME" = "schedule" ] ; then # running in scheduled job
12
FLAGS=""
13
USE_TOKEN=1
14
0 commit comments