We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b135e2 commit 0da6bf1Copy full SHA for 0da6bf1
1 file changed
.github/workflows/sphinx.yml
@@ -13,22 +13,24 @@ jobs:
13
- uses: actions/checkout@v4
14
15
- name: Install dependencies
16
- run: pip install -r requirements.txt
+ run: pip install -r docs/requirements.txt
17
18
- name: Build HTML
19
run: python -m sphinx.cmd.build -M html docs/source docs/build
20
-
+ # - name: Build HTML
21
+ # uses: ammaraskar/sphinx-action@master
22
- name: Upload artifacts
23
uses: actions/upload-artifact@v4
24
with:
25
name: html-docs
26
path: docs/build/html/
27
28
- name: Deploy
- # uses: sphinx-notes/pages@v3
29
- # with:
30
- # publish: true
31
+ uses: sphinx-notes/pages@v3
+ with:
+ publish: true
32
+
33
+ - name: Deploy2
34
uses: peaceiris/actions-gh-pages@v3
35
36
github_token: ${{ secrets.DOCSITE_TOKEN }}
0 commit comments