File tree 2 files changed +7
-3
lines changed
2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -34,11 +34,13 @@ jobs:
34
34
- name : Checkout
35
35
uses : actions/checkout@v3
36
36
37
- - name : Install mdBook
38
- run : cargo install mdbook --no-default-features --features search
37
+ - name : Download mdBook
38
+ run : |
39
+ mkdir bin
40
+ curl -sSL https://github.com/rust-lang/mdBook/releases/download/v0.4.21/mdbook-v0.4.21-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory=bin
39
41
40
42
- name : Build Docs
41
- run : $HOME/.cargo/ bin/mdbook build
43
+ run : bin/mdbook build
42
44
43
45
- name : Upload artifact
44
46
uses : actions/upload-pages-artifact@v1
Original file line number Diff line number Diff line change @@ -8,6 +8,8 @@ title = "NYU Processor Design Documentation"
8
8
[output .html ]
9
9
default-theme = " ayu"
10
10
curly-quotes = true
11
+ git-repository-url = " https://github.com/NYU-Processor-Design/nyu-processor-design.github.io/tree/main"
12
+ edit-url-template = " https://github.com/NYU-Processor-Design/nyu-processor-design.github.io/tree/main/{path}"
11
13
12
14
[output .html .fold ]
13
15
enable = true
You can’t perform that action at this time.
0 commit comments