You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/ci.yml
+9-5Lines changed: 9 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -33,7 +33,11 @@ jobs:
33
33
run: cargo test --all
34
34
35
35
- name: Install mdbook
36
-
run: cd book && curl -L https://github.com/rust-lang/mdBook/releases/download/v0.3.7/mdbook-v0.3.7-x86_64-unknown-linux-gnu.tar.gz | tar xz
36
+
run: |
37
+
cd book
38
+
curl -L https://github.com/rust-lang/mdBook/releases/download/v0.3.7/mdbook-v0.3.7-x86_64-unknown-linux-gnu.tar.gz | tar xz
39
+
# Add the book directory to the $PATH
40
+
echo "::add-path::$GITHUB_WORKSPACE/book"
37
41
38
42
- name: Install mdbook-toc
39
43
run: cd book && curl -L https://github.com/badboy/mdbook-toc/releases/download/0.2.4/mdbook-toc-0.2.4-x86_64-unknown-linux-gnu.tar.gz | tar xz
@@ -90,14 +94,14 @@ jobs:
90
94
fetch-depth: 1
91
95
92
96
- name: Install mdbook
93
-
run: cd book && curl -L https://github.com/rust-lang/mdBook/releases/download/v0.3.7/mdbook-v0.3.7-x86_64-unknown-linux-gnu.tar.gz | tar xz
94
-
95
-
- name: Install mdbook-linkcheck
96
97
run: |
97
98
cd book
98
-
curl -L https://github.com/Michael-F-Bryan/mdbook-linkcheck/releases/download/v0.5.0/mdbook-linkcheck-v0.5.0-x86_64-unknown-linux-gnu.tar.gz | tar xz
99
+
curl -L https://github.com/rust-lang/mdBook/releases/download/v0.3.7/mdbook-v0.3.7-x86_64-unknown-linux-gnu.tar.gz | tar xz
99
100
# Add the book directory to the $PATH
100
101
echo "::add-path::$GITHUB_WORKSPACE/book"
101
102
103
+
- name: Install mdbook-linkcheck
104
+
run: cd book && curl -L https://github.com/Michael-F-Bryan/mdbook-linkcheck/releases/download/v0.5.0/mdbook-linkcheck-v0.5.0-x86_64-unknown-linux-gnu.tar.gz | tar xz
0 commit comments