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 0261bc0 commit 4ffd5bdCopy full SHA for 4ffd5bd
.github/workflows/publish_documentation.yml
@@ -31,5 +31,10 @@ jobs:
31
- name: Install virtual environment
32
run: make install_venv -C docs/mkdocs
33
34
- - name: Publish documentation
35
- run: make publish -C docs/mkdocs
+ - name: Build documentation
+ run: make build -C docs/mkdocs
36
+
37
+ - name: Deploy documentation
38
+ uses: JamesIves/github-pages-deploy-action@v4
39
+ with:
40
+ folder: 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
+# publish site to GitHub pages (not working in CI)
25
publish: prepare_files
26
venv/bin/mkdocs gh-deploy --clean --force
27
0 commit comments