-
Notifications
You must be signed in to change notification settings - Fork 3
42 lines (37 loc) · 1.11 KB
/
documentation.yml
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
name: Documentation
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
concurrency: documentation
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0 # otherwise, you will failed to push refs to dest repo
- name: Install dependencies
shell: bash
run: |
python -m pip install --upgrade pip
pip install ".[docs]"
# if there is doc or tutorial requirements.txt file then install it
if [ -f ./docs/tutorials/requirements.txt ]; then
pip install -r ./docs/tutorials/requirements.txt
fi
if [ -f ./docs/requirements.txt ]; then
pip install -r ./docs/requirements.txt
fi
- name: Build and Commit
uses: sphinx-notes/[email protected]
with:
documentation_path: docs
- name: Push changes
if: ${{ github.event_name == 'push' }}
uses: ad-m/[email protected]
with:
github_token: ${{ secrets.SPHINX_DOCUMENTATION }}
branch: gh-pages