We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab588bf commit a0e47abCopy full SHA for a0e47ab
.github/workflows/mdbook.yml
@@ -13,8 +13,6 @@ jobs:
13
build:
14
name: Build Book - mdbook
15
runs-on: ubuntu-latest
16
- env:
17
- working-directory: docs
18
steps:
19
20
- name: Checkout repository
@@ -24,16 +22,17 @@ jobs:
24
22
with:
25
23
toolchain: stable
26
override: true
27
-
+ - name: Rust Cache
+ uses: Swatinem/rust-cache@v2.7.3
28
- name: Install mdBook
29
run: cargo install mdbook
30
31
- name: Build the book
32
- run: mdbook build
+ run: cd docs && mdbook build
33
34
- name: Deploy to GitHub Pages
35
if: github.ref == 'refs/heads/main'
36
uses: peaceiris/actions-gh-pages@v3
37
38
github_token: ${{ secrets.GITHUB_TOKEN }}
39
- publish_dir: book
+ publish_dir: docs/book
0 commit comments