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 9addcf7 commit c69ca68Copy full SHA for c69ca68
.github/workflows/main.yml
@@ -15,9 +15,11 @@ jobs:
15
rustup toolchain install nightly -c rust-docs
16
rustup default nightly
17
- name: Install mdbook
18
+ env:
19
+ MDBOOK_VER: v0.4.3
20
run: |
21
mkdir bin
- curl -sSL https://github.com/rust-lang/mdBook/releases/download/v0.3.5/mdbook-v0.3.5-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=bin
22
+ curl -sSL https://github.com/rust-lang/mdBook/releases/download/${{ env.MDBOOK_VER }}/mdbook-${{ env.MDBOOK_VER }}-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=bin
23
echo "##[add-path]$(pwd)/bin"
24
- name: Report versions
25
0 commit comments