forked from isosuite/gustaf
-
Notifications
You must be signed in to change notification settings - Fork 0
44 lines (36 loc) · 1.1 KB
/
Copy pathdocs.yml
File metadata and controls
44 lines (36 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name: build docs
on:
push:
branches: ["main"]
jobs:
docs:
runs-on: ubuntu-latest
steps:
- name: checkout git
uses: actions/checkout@v3
- name: setup python
uses: actions/setup-python@v3
with:
python-version: 3.9
- name: install gustaf
run: python3 setup.py develop
- name: Install dependencies
run: pip install -r ./docs/requirements.txt
- name: install splinepy
run: |
# test version of v0.0.3
pip install -i https://test.pypi.org/simple/ splinepy==0.0.3
- name: Sphinx config
run: |
sphinx-apidoc -f -t docs/source/_templates -o docs/source gustaf
- name: Sphinx build
run: |
sphinx-build -W -b html docs/source docs/build
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
#if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
with:
#publish_branch: gh-pages
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/build
force_orphan: true