We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ac976c commit 84e4d59Copy full SHA for 84e4d59
.github/workflows/mdbook.yml
@@ -32,17 +32,22 @@ jobs:
32
MDBOOK_VERSION: 0.4.36
33
steps:
34
- uses: actions/checkout@v4
35
- - name: Install mdBook
36
- run: |
37
- curl --proto '=https' --tlsv1.2 https://sh.rustup.rs -sSf -y | sh
38
- rustup update
39
- cargo install --force --version ${MDBOOK_VERSION} mdbook
40
- cargo install --force mdbook-alerts
+
+ - name: Install mdbook and cargo-binstall binaries
+ uses: taiki-e/install-action@v2
+ with:
+ tool: mdbook,cargo-binstall
41
+ - name: Install mdbook extensions
42
+ run: cargo binstall -y mdbook-alerts
43
44
- name: Setup Pages
45
id: pages
46
uses: actions/configure-pages@v4
47
48
- name: Build with mdBook
49
run: mdbook build
50
51
- name: Upload artifact
52
uses: actions/upload-pages-artifact@v3
53
with:
0 commit comments