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 cc794e5 commit 87a15e0Copy full SHA for 87a15e0
.github/workflows/deploy.yml
@@ -11,13 +11,15 @@ jobs:
11
ci:
12
name: CI
13
runs-on: ubuntu-latest
14
+ env:
15
+ MDBOOK_VERSION: 0.4.51
16
permissions:
17
id-token: write
18
contents: write
19
steps:
20
- uses: actions/checkout@v3
21
- name: Install mdbook
- run: curl -sSL https://github.com/rust-lang/mdBook/releases/download/v0.4.48/mdbook-v0.4.48-x86_64-unknown-linux-gnu.tar.gz | tar -xz
22
+ run: 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
23
- name: Check blacksmith format
24
run: cargo fmt --check --manifest-path=blacksmith/Cargo.toml
25
- name: Build book
0 commit comments