We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57d1e6b commit 10c76e1Copy full SHA for 10c76e1
.github/workflows/ci.yml
@@ -41,7 +41,7 @@ jobs:
41
uses: actions/cache/restore@v4
42
with:
43
path: book/linkcheck/cache.json
44
- key: linkcheck
+ key: linkcheck--${{ env.MDBOOK_LINKCHECK2_VERSION }}
45
46
- name: Install latest nightly Rust toolchain
47
if: steps.mdbook-cache.outputs.cache-hit != 'true'
@@ -58,7 +58,7 @@ jobs:
58
cargo install mdbook-mermaid --version ${{ env.MDBOOK_MERMAID_VERSION }}
59
60
- name: Check build
61
- run: mdbook build
+ run: ENABLE_LINKCHECK=1 mdbook build
62
continue-on-error: true
63
64
- name: Save cached Linkcheck
@@ -67,7 +67,7 @@ jobs:
67
uses: actions/cache/save@v4
68
69
70
71
72
- name: Deploy to gh-pages
73
if: github.event_name == 'push'
0 commit comments