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 2d482e2 commit 1d2b1f0Copy full SHA for 1d2b1f0
.github/workflows/main.yml
@@ -1,6 +1,9 @@
1
name: CI
2
on: [push, pull_request]
3
4
+env:
5
+ MDBOOK_VERSION: 0.4.40
6
+
7
jobs:
8
test:
9
name: Test
@@ -17,7 +20,7 @@ jobs:
17
20
- name: Install mdbook
18
21
run: |
19
22
mkdir bin
- curl -sSL https://github.com/rust-lang/mdBook/releases/download/v0.4.7/mdbook-v0.4.7-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=bin
23
+ curl -sSL https://github.com/rust-lang/mdBook/releases/download/v${MDBOOK_VERSION}/mdbook-v${MDBOOK_VERSION}-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=bin
24
echo "$(pwd)/bin" >> $GITHUB_PATH
25
- name: Report versions
26
0 commit comments