We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 16e1dd0 commit f6295ceCopy full SHA for f6295ce
.github/workflows/docs.yml
@@ -0,0 +1,28 @@
1
+name: "Sphinx: Render docs"
2
+
3
+on:
4
+ push:
5
+ branches: ["master"]
6
7
+jobs:
8
+ build:
9
+ runs-on: ubuntu-latest
10
+ permissions:
11
+ contents: write
12
+ steps:
13
+ - uses: actions/checkout@v4
14
+ with:
15
+ persist-credentials: false
16
+ - name: Build HTML
17
+ uses: ammaraskar/sphinx-action@master
18
+ - name: Upload artifacts
19
+ uses: actions/upload-artifact@v4
20
21
+ name: html-docs
22
+ path: docs/build/html/
23
+ - name: Deploy
24
+ uses: peaceiris/actions-gh-pages@v3
25
+ if: github.ref == 'refs/heads/main'
26
27
+ github_token: ${{ secrets.GITHUB_TOKEN }}
28
+ publish_dir: docs/build/html
docs/requirements.txt
@@ -0,0 +1 @@
+furo==2021.11.16
0 commit comments