Skip to content

Commit a5f275c

Browse files
authored
Install mdbook-linkcheck with a fix for mdbook v0.5 (#577)
Michael-F-Bryan/mdbook-linkcheck#98
1 parent 9b31451 commit a5f275c

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

.github/workflows/book.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,13 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- uses: actions/checkout@v4
19-
- name: Install mdbook and mdbook-linkcheck
19+
- name: Install mdbook
2020
uses: taiki-e/install-action@v2
2121
with:
22-
tool: mdbook, mdbook-linkcheck
22+
tool: mdbook
23+
- name: Install mdbook-linkcheck
24+
# Temporarily pull the fix for https://github.com/Michael-F-Bryan/mdbook-linkcheck/pull/98
25+
run: cargo install mdbook-linkcheck --git https://github.com/schilkp/mdbook-linkcheck --branch mdbook_v0.5
2326
- name: Build mdbook
2427
run: |
2528
mdbook build book

.github/workflows/release-book.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,10 @@ jobs:
2828
- name: Install mdbook
2929
uses: taiki-e/install-action@v2
3030
with:
31-
tool: mdbook, mdbook-linkcheck
31+
tool: mdbook
32+
- name: Install mdbook-linkcheck
33+
# Temporarily pull the fix for https://github.com/Michael-F-Bryan/mdbook-linkcheck/pull/98
34+
run: cargo install mdbook-linkcheck --git https://github.com/schilkp/mdbook-linkcheck --branch mdbook_v0.5
3235
- name: Setup Pages
3336
uses: actions/configure-pages@v5
3437
- name: Build book

0 commit comments

Comments
 (0)