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 1dfe407 commit 6eab7a2Copy full SHA for 6eab7a2
2 files changed
.github/workflows/publish_documentation.yml
@@ -35,9 +35,7 @@ jobs:
35
run: make build -C docs/mkdocs
36
37
- name: Deploy documentation
38
- uses: crazy-max/ghaction-github-pages@v4
+ uses: peaceiris/actions-gh-pages@v3
39
with:
40
- target_branch: gh-pages
41
- build_dir: docs/mkdocs/site
42
- env:
43
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ github_token: ${{ secrets.GITHUB_TOKEN }}
+ publish_dir: ./docs/mkdocs/site
docs/mkdocs/Makefile
@@ -21,7 +21,7 @@ style_check:
21
clean:
22
rm -fr docs/images/json.gif docs/examples
23
24
-# publish site to GitHub pages (not working in GitHub Actions)
+# publish site to GitHub pages (not working in GitHub Actions; need special action)
25
publish: prepare_files
26
venv/bin/mkdocs gh-deploy --clean --force
27
0 commit comments