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 5c1dad4 commit 44b218fCopy full SHA for 44b218f
.github/workflows/docs.yml
@@ -1,4 +1,4 @@
1
-name: Test documentation building (until it's moved to ReadTheDocs)
+name: Test documentation building, and publish report to GitHub Pages
2
3
on:
4
push:
@@ -35,6 +35,14 @@ jobs:
35
run: |
36
cd docs
37
sphinx-build -n --keep-going -b html ./ ./_build/
38
+ - name: Rename entry point of report to index.html
39
+ run: |
40
+ mv docs/quarto_report/quarto_report.html docs/quarto_report/index.html
41
+ - name: Publish html report to github pages
42
+ uses: peaceiris/actions-gh-pages@v4
43
+ with:
44
+ github_token: ${{ secrets.GITHUB_TOKEN }}
45
+ publish_dir: docs/quarto_report/
46
# - name: save artifacts
47
# uses: actions/upload-artifact@v4
48
# with:
0 commit comments