We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6478406 + 6e768ad commit 0177525Copy full SHA for 0177525
.github/workflows/book.yml
@@ -26,14 +26,17 @@ jobs:
26
curl -L https://github.com/Michael-F-Bryan/mdbook-linkcheck/releases/download/v$MDBOOK_LINKCHECK_VERSION/mdbook-linkcheck.x86_64-unknown-linux-gnu.zip -O
27
unzip mdbook-linkcheck.x86_64-unknown-linux-gnu.zip -d ~/.cargo/bin
28
chmod +x ~/.cargo/bin/mdbook-linkcheck
29
+ - name: Setup Pages
30
+ id: pages
31
+ uses: actions/configure-pages@v5
32
- name: Build
33
run: mdbook build
34
working-directory: book
35
- name: Upload static files as artifact
36
id: deployment
37
uses: actions/upload-pages-artifact@v3
38
with:
- path: book/book/html
39
+ path: ./book/book
40
deploy:
41
name: Deploy
42
runs-on: ubuntu-latest
0 commit comments