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 8f5fc86 commit 550e29aCopy full SHA for 550e29a
.github/workflows/deploy-docs.yml
@@ -37,15 +37,15 @@ jobs:
37
cargo install mdbook-katex --version ^0.5 --locked
38
39
- name: Build book
40
- run: |
41
- cd docs
42
- mdbook build
+ run: mdbook build
+
+ - name: Add .nojekyll
43
+ run: touch book/.nojekyll
44
45
- name: Deploy to GitHub Pages
46
uses: peaceiris/actions-gh-pages@v3
47
if: github.ref == 'refs/heads/main'
48
with:
49
github_token: ${{ secrets.GITHUB_TOKEN }}
- publish_dir: ./docs/book
50
- cname: starkbiter.rs
+ publish_dir: ./book
51
.github/workflows/mdbook.yml
.gitignore
@@ -26,3 +26,6 @@ example_fork/test.json
26
27
doctest_cache/
28
docs/target/*
29
30
+# mdBook output
31
+book/
0 commit comments