We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ea3f84 commit 1df1d17Copy full SHA for 1df1d17
.github/workflows/deploy.yml
@@ -21,12 +21,13 @@ jobs:
21
- name: Checkout
22
uses: actions/checkout@v4
23
24
- # Install mdBook
+ # Install Rust
25
+ - name: Install Rust
26
+ uses: dtolnay/rust-toolchain@stable
27
+
28
+ # Install mdBook via cargo
29
- name: Install mdBook
- run: |
- curl -Ls https://github.com/rust-lang/mdBook/releases/latest/download/mdbook-x86_64-unknown-linux-gnu.tar.gz | tar xz
- sudo mv mdbook /usr/local/bin/mdbook
- mdbook --version
30
+ run: cargo install mdbook
31
32
- name: Configure Pages
33
id: pages
0 commit comments