diff --git a/guide/src/continuous-integration.md b/guide/src/continuous-integration.md index aed0dada..a5710c97 100644 --- a/guide/src/continuous-integration.md +++ b/guide/src/continuous-integration.md @@ -26,7 +26,7 @@ before_script: - cargo install-update -a script: - - mdbook build && mdbook test + - mdbook build && mdbook test # Edit in case of custom book path: mdbook build path/to/mybook && mdbook test path/to/mybook ``` ## Deploying Your Book to GitHub Pages @@ -50,7 +50,7 @@ deploy: provider: pages skip-cleanup: true github-token: $GITHUB_TOKEN - local-dir: book + local-dir: book # Edit in case of custom book path: path/to/mybook/book keep-history: false on: branch: main @@ -77,7 +77,7 @@ before_script: - cargo install-update -a script: - - mdbook build && mdbook test + - mdbook build && mdbook test # Edit in case of custom book path: mdbook build path/to/mybook && mdbook test path/to/mybook deploy: provider: pages @@ -85,7 +85,7 @@ deploy: edge: true cleanup: false github-token: $GITHUB_TOKEN - local-dir: book + local-dir: book # Edit in case of custom book path: path/to/mybook/book keep-history: false on: branch: main