File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ before_script:
26
26
- cargo install-update -a
27
27
28
28
script :
29
- - mdbook build path/to/mybook && mdbook test path/to/mybook
29
+ - mdbook build && mdbook test # In case of custom book path: mdbook build path/to/mybook && mdbook test path/to/mybook
30
30
` ` `
31
31
32
32
## Deploying Your Book to GitHub Pages
@@ -50,10 +50,10 @@ deploy:
50
50
provider: pages
51
51
skip-cleanup: true
52
52
github-token: $GITHUB_TOKEN
53
- local-dir: path/to/mybook/book
53
+ local-dir: book # In case of custom book path: path/to/mybook/book
54
54
keep-history: false
55
55
on:
56
- branch: master
56
+ branch: main
57
57
` ` `
58
58
59
59
That's it!
@@ -77,18 +77,18 @@ before_script:
77
77
- cargo install-update -a
78
78
79
79
script:
80
- - mdbook build path/to/mybook && mdbook test path/to/mybook
80
+ - mdbook build && mdbook test # In case of custom book path: mdbook build path/to/mybook && mdbook test path/to/mybook
81
81
82
82
deploy:
83
83
provider: pages
84
84
strategy: git
85
85
edge: true
86
86
cleanup: false
87
87
github-token: $GITHUB_TOKEN
88
- local-dir: path/to/mybook/book
88
+ local-dir: book # In case of custom book path: path/to/mybook/book
89
89
keep-history: false
90
90
on:
91
- branch: master
91
+ branch: main
92
92
target_branch: gh-pages
93
93
` ` `
94
94
You can’t perform that action at this time.
0 commit comments