File tree Expand file tree Collapse file tree 1 file changed +18
-11
lines changed
Expand file tree Collapse file tree 1 file changed +18
-11
lines changed Original file line number Diff line number Diff line change 99 runs-on : ubuntu-latest
1010
1111 steps :
12- - uses : actions/checkout@v1
13- # Standard drop-in approach that should work for most people.
14- - uses : ammaraskar/sphinx-action@master
15- with :
16- pre-build-command : " pip install -r dev.requirements.txt"
17- docs-folder : " docs/"
12+ - uses : actions/checkout@v2
1813
19- - name : GitHub Pages action
20- 21- with :
22- github_token : ${{ secrets.GITHUB_TOKEN }}
23- publish_dir : ./_build/html
14+ - name : Set up Python 3.8
15+ uses : actions/setup-python@v2
16+ with :
17+ python-version : 3.8
18+
19+ - name : Install dependencies
20+ run : |
21+ python -m pip install --upgrade pip
22+ python -m pip install -r dev.requirements.txt
23+ - name : Build the book
24+ run : |
25+ make html docs/
26+ - name : GitHub Pages action
27+ 28+ with :
29+ github_token : ${{ secrets.GITHUB_TOKEN }}
30+ publish_dir : ./_build/html
You can’t perform that action at this time.
0 commit comments