Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/book.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install mdbook and mdbook-linkcheck
- name: Install mdbook
uses: taiki-e/install-action@v2
with:
tool: mdbook, mdbook-linkcheck
tool: mdbook
- name: Install mdbook-linkcheck
# Temporarily pull the fix for https://github.com/Michael-F-Bryan/mdbook-linkcheck/pull/98
run: cargo install mdbook-linkcheck --git https://github.com/schilkp/mdbook-linkcheck --branch mdbook_v0.5
- name: Build mdbook
run: |
mdbook build book
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/release-book.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,10 @@ jobs:
- name: Install mdbook
uses: taiki-e/install-action@v2
with:
tool: mdbook, mdbook-linkcheck
tool: mdbook
- name: Install mdbook-linkcheck
# Temporarily pull the fix for https://github.com/Michael-F-Bryan/mdbook-linkcheck/pull/98
run: cargo install mdbook-linkcheck --git https://github.com/schilkp/mdbook-linkcheck --branch mdbook_v0.5
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Build book
Expand Down