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 169bff4 commit 9a92adeCopy full SHA for 9a92ade
.github/workflows/sphinx.yml
@@ -1,5 +1,6 @@
1
name: "Sphinx"
2
on: push
3
+
4
jobs:
5
build:
6
runs-on: ubuntu-latest
@@ -9,18 +10,20 @@ jobs:
9
10
- uses: actions/checkout@v4
11
with:
12
persist-credentials: false
- - name: update pip
13
14
+ - name: build
15
run: |
- python -m pip install --upgrade pip
- - name: build html
16
- uses: ammaraskar/sphinx-action@master
17
- with:
18
- docs-folder: "sphinx/"
+ # python -m pip install --upgrade pip
+ cd sphinx
+ pip install -r requirements.txt
19
+ sphinx-build source build
20
21
- name: upload artifacts
22
uses: actions/upload-artifact@v4
23
24
name: html-docs
25
path: sphinx/build/html/
26
27
- name: deploy
28
uses: peaceiris/actions-gh-pages@v3
29
if: github.ref == 'refs/heads/master'
0 commit comments