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 255618c commit 6387588Copy full SHA for 6387588
.github/workflows/sphinx.yml
@@ -35,16 +35,22 @@ jobs:
35
run: |
36
pip install -r requirements.txt
37
38
+ - name: Download figures artifact
39
+ uses: actions/download-artifact@v3
40
+ with:
41
+ name: Figures
42
+
43
- name: Build html
44
- sphinx-apidoc -o doc src
45
+ mv Figures docs/_static/
46
+ sphinx-apidoc -o docs src
47
cd doc/
48
make html
49
50
- name: Upload docs artifact
51
uses: actions/upload-pages-artifact@v3
52
with:
- path: 'doc/_build/html'
53
+ path: 'docs/_build/html'
54
55
- name: Deploy to GitHub Pages
56
id: deployment
0 commit comments