Skip to content

Commit 3976c9d

Browse files
authored
Merge pull request #1576 from kana4/master
MyPaths are not required and fail
2 parents 96b6f02 + a8926d5 commit 3976c9d

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

guide/src/continuous-integration.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ before_script:
2626
- cargo install-update -a
2727

2828
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
3030
```
3131
3232
## Deploying Your Book to GitHub Pages
@@ -50,10 +50,10 @@ deploy:
5050
provider: pages
5151
skip-cleanup: true
5252
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
5454
keep-history: false
5555
on:
56-
branch: master
56+
branch: main
5757
```
5858

5959
That's it!
@@ -77,18 +77,18 @@ before_script:
7777
- cargo install-update -a
7878
7979
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
8181
8282
deploy:
8383
provider: pages
8484
strategy: git
8585
edge: true
8686
cleanup: false
8787
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
8989
keep-history: false
9090
on:
91-
branch: master
91+
branch: main
9292
target_branch: gh-pages
9393
```
9494

0 commit comments

Comments
 (0)