Skip to content
This repository was archived by the owner on Sep 11, 2024. It is now read-only.

Commit 69bb04c

Browse files
committed
wip
1 parent 85dedf7 commit 69bb04c

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/ci.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,20 @@ jobs:
1616
- name: Checkout
1717
uses: actions/checkout@v3
1818

19+
- name: Download mdBook
20+
run: |
21+
set +x
22+
23+
version="v0.4.40"
24+
25+
cd /tmp
26+
archive="mdbook-v0.4.40-x86_64-unknown-linux-gnu.tar.gz"
27+
wget "https://github.com/rust-lang/mdBook/releases/download/v0.4.40/${archive}"
28+
tar xzvf "${archive}"
29+
mv mdbook /usr/bin
30+
31+
mdbook --version
32+
1933
- name: Build
2034
run: mdbook build
2135

0 commit comments

Comments
 (0)