Skip to content

Commit 4ffd5bd

Browse files
committed
💚 fix documentation deploy
1 parent 0261bc0 commit 4ffd5bd

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

.github/workflows/publish_documentation.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,10 @@ jobs:
3131
- name: Install virtual environment
3232
run: make install_venv -C docs/mkdocs
3333

34-
- name: Publish documentation
35-
run: make publish -C docs/mkdocs
34+
- name: Build documentation
35+
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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ style_check:
2121
clean:
2222
rm -fr docs/images/json.gif docs/examples
2323

24-
# publish site to GitHub pages
24+
# publish site to GitHub pages (not working in CI)
2525
publish: prepare_files
2626
venv/bin/mkdocs gh-deploy --clean --force
2727

0 commit comments

Comments
 (0)