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 798b54f commit 23c33d4Copy full SHA for 23c33d4
.github/workflows/CI.yml
@@ -40,11 +40,22 @@ jobs:
40
pip install pytest
41
pip install sphinx sphinx_rtd_theme
42
sphinx-build docs/source _build
43
- - name: Deploy to GitHub Pages
44
- uses: peaceiris/actions-gh-pages@v4
+ - name: Upload doc files
+ id: deployment
45
+ uses: actions/upload-pages-artifact@v3
46
with:
- github_token: ${{ secrets.GITHUB_TOKEN }}
47
- publish_dir: _build/
+ path: _build/
48
+
49
+ deploy:
50
+ environment:
51
+ name: github-pages
52
+ url: ${{ steps.deployment.outputs.page_url }}
53
+ runs-on: ubuntu-latest
54
+ needs: docs
55
+ steps:
56
+ - name: Deploy to GitHub Pages
57
58
+ uses: actions/deploy-pages@v4
59
60
linux:
61
runs-on: ${{ matrix.platform.runner }}
0 commit comments