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 283c10a commit e36afe0Copy full SHA for e36afe0
.github/workflows/mdbook.yml
@@ -10,20 +10,20 @@ jobs:
10
deploy-book:
11
runs-on: ubuntu-latest
12
container:
13
- image: peaceiris/mdbook:latest
+ image: rust:latest
14
steps:
15
- name: Checkout
16
uses: actions/checkout@v4
17
18
- # Avoid building the entire Rust toolchain, use peaceiris image instead.
+ # Avoid building the entire Rust toolchain, use Rust image instead.
19
# - name: Setup Rust toolchain
20
# uses: actions-rs/toolchain@v1
21
# with:
22
# toolchain: stable
23
24
- name: Install mdBook and preprocessors
25
run: |
26
- cargo install mdbook-katex
+ cargo install mdbook mdbook-katex
27
28
- name: Build mdBook
29
run: mdbook build documentation/mdbook
0 commit comments