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 6725843 commit c05d0ccCopy full SHA for c05d0cc
.github/workflows/sphinx.yml
@@ -35,16 +35,20 @@ jobs:
35
run: |
36
pip install -r requirements.txt
37
38
+ # Action to download artifacts from a different workflow (analysis.yml)
39
- name: Download figures artifact
- uses: actions/download-artifact@v3
40
+ uses: dawidd6/action-download-artifact@v3
41
with:
42
+ workflow: analysis.yml
43
name: Figures
44
+ branch: main
45
46
- name: Build html
47
- mv Figures docs/_static/
48
+ mkdir docs/_static
49
+ mv *.pdf docs/_static/
50
sphinx-apidoc -o docs src
- cd doc/
51
+ cd docs/
52
make html
53
54
- name: Upload docs artifact
0 commit comments