We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d3a98f3 commit 3953b22Copy full SHA for 3953b22
1 file changed
.github/workflows/docs.yaml
@@ -39,4 +39,20 @@ jobs:
39
pip install --upgrade pip
40
pip install --requirement docs/requirements.txt
41
- name: Build documentation
42
- run: mkdocs gh-deploy --force
+ run: mkdocs build
43
+ # To remove if not using github pages
44
+ - name: Upload artifact
45
+ uses: actions/upload-pages-artifact@v3
46
+ with:
47
+ path: site
48
+
49
+ deploy:
50
+ runs-on: ubuntu-latest
51
+ needs: build
52
+ permissions:
53
+ pages: write
54
+ id-token: write
55
+ steps:
56
+ - name: Deploy to GitHub Pages
57
+ id: deployment
58
+ uses: actions/deploy-pages@v4
0 commit comments