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