We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 537dff9 commit 4856484Copy full SHA for 4856484
1 file changed
.github/workflows/docs.yaml
@@ -14,18 +14,17 @@ jobs:
14
with:
15
python-version: "3.12"
16
- run: |
17
- make install
+ make install-optional
18
cd docs
19
make install-deps
20
make build
21
- tar -C build/html/ --dereference --hard-dereference -cvzf $RUNNER_TEMP/github-pages.tar.gz .
22
- name: Upload static files as artifact
23
# We only execute this step if the commit is tagged, i.e., this is a release
24
#if: startsWith(github.ref, 'refs/tags')
25
id: deployment
26
- uses: actions/upload-pages-artifact@v3
+ uses: actions/upload-pages-artifact@v4
27
28
- path: ${{ runner.temp }}/github-pages.tar.gz
+ path: build/html/
29
30
deploy:
31
name: Deploy docs
0 commit comments