-
Notifications
You must be signed in to change notification settings - Fork 0
114 lines (87 loc) · 2.06 KB
/
docs.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
name: Docs
on:
push:
branches: [main, develop]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install doc8
run: |
pip install doc8
- name: Lint docs with doc8
run: doc8 docs
build:
runs-on: ubuntu-latest
needs: lint
strategy:
matrix:
branch: [main, develop]
steps:
- uses: actions/checkout@v4
with:
ref: ${{ matrix.branch }}
- uses: actions/setup-node@v3
with:
node-version: 16
- name: Install npm dependencies
run: |
npm install
- name: Build
run: |
npm run build
- name: Upload build
uses: actions/upload-artifact@v4
if: ${{ always() }}
with:
name: build-${{ matrix.branch }}
path: 'public/'
build-docs:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v4
- uses: altwalker/setup-graphwalker@v1
with:
python-version: '3.9'
- name: Install npm dependencies
run: |
npm install -g [email protected]
- name: Install pip dependencies
run: |
pip install -r requirements.txt
- name: Build docs
run: |
cd docs
make html
- uses: actions/download-artifact@v3
with:
name: build-main
path: 'docs/_build/html/build'
- uses: actions/download-artifact@v3
with:
name: build-develop
path: 'docs/_build/html/build-dev'
- name: Upload artifact
if: github.ref == 'refs/heads/main'
uses: actions/upload-pages-artifact@v1
with:
path: 'docs/_build/html/'
deploy:
runs-on: ubuntu-latest
needs: build-docs
if: github.ref == 'refs/heads/main'
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4