-
Notifications
You must be signed in to change notification settings - Fork 1
54 lines (43 loc) · 1.34 KB
/
update_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
43
44
45
46
47
48
49
50
51
52
53
54
name: Update documentation
on: push
jobs:
build:
name: Build docs
runs-on: ubuntu-latest
if: ${{ github.ref != 'refs/heads/main' }}
steps:
- name: Checkout main
uses: actions/checkout@v4
- name: Install Python
uses: actions/setup-python@v4
with:
python-version: '3.10.8'
- name: Install mkdocs requirements
run: pip install mkdocs mkdocs-material pymdown-extensions mkdocstrings-python mkdocs-jupyter jupyter
- name: Install project requirements
run: pip install -r requirements.txt
- name: Install project
run: pip install .
- name: Build docs
run: |
mkdocs build
deploy:
name: Deploy docs
runs-on: ubuntu-latest
if: ${{ github.ref == 'refs/heads/main' }}
steps:
- name: Checkout main
uses: actions/checkout@v4
- name: Install Python
uses: actions/setup-python@v4
with:
python-version: '3.10.8'
- name: Install mkdocs requirements
run: pip install mkdocs mkdocs-material pymdown-extensions mkdocstrings-python mkdocs-jupyter jupyter
- name: Install project requirements
run: pip install -r requirements.txt
- name: Install project
run: pip install .
- name: Deploy docs
run: |
mkdocs gh-deploy --force