We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ffd5bd commit 1dfe407Copy full SHA for 1dfe407
.github/workflows/publish_documentation.yml
@@ -35,6 +35,9 @@ jobs:
35
run: make build -C docs/mkdocs
36
37
- name: Deploy documentation
38
- uses: JamesIves/github-pages-deploy-action@v4
+ uses: crazy-max/ghaction-github-pages@v4
39
with:
40
- folder: docs/mkdocs/site
+ target_branch: gh-pages
41
+ build_dir: docs/mkdocs/site
42
+ env:
43
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
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 CI)
+# publish site to GitHub pages (not working in GitHub Actions)
25
publish: prepare_files
26
venv/bin/mkdocs gh-deploy --clean --force
27
0 commit comments