We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c286d0 commit 9bbc8feCopy full SHA for 9bbc8fe
.github/workflows/mdbook.yml
@@ -11,7 +11,7 @@ on:
11
branches: ["main"]
12
paths:
13
- 'docs/**'
14
- - 'book.toml'
+ - 'docs/book.toml'
15
workflow_dispatch:
16
17
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
@@ -43,11 +43,13 @@ jobs:
43
id: pages
44
uses: actions/configure-pages@v5
45
- name: Build with mdBook
46
- run: mdbook build
+ run: |
47
+ cd docs
48
+ mdbook build
49
- name: Upload artifact
50
uses: actions/upload-pages-artifact@v3
51
with:
- path: ./book
52
+ path: ./docs/book
53
54
# Deployment job
55
deploy:
0 commit comments