-
-
Notifications
You must be signed in to change notification settings - Fork 115
83 lines (69 loc) · 1.65 KB
/
build_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
on:
push:
paths:
- .github/workflows/build_docs.yml
- docs/**
- src/**/*.h
- Doxyfile
- DoxygenLayout.xml
- mkdocs.yml
workflow_dispatch:
jobs:
build-doxygen:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- run: |
mkdir -p site/api
- uses: mattnotmitt/[email protected]
- run: |
tar -cvf artifact.tar -C site/ .
- uses: actions/upload-artifact@v3
with:
name: doxygen-pages
path: |
artifact.tar
build-mkdocs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: |
pip install -r requirements.txt
- run: |
mkdocs build
- run: |
tar -cvf artifact.tar -C site/ .
- uses: actions/upload-artifact@v3
with:
name: mkdocs-pages
path: |
artifact.tar
merge:
needs:
- build-doxygen
- build-mkdocs
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v3
with:
path: artifacts/
- name: Extract artifacts
run: |
mkdir site
tar -xvf artifacts/doxygen-pages/artifact.tar -C site/
tar -xvf artifacts/mkdocs-pages/artifact.tar -C site/
- uses: actions/upload-pages-artifact@v2
with:
path: site/
deploy:
if: github.ref == 'refs/heads/develop' && github.event_name == 'push'
needs:
- merge
permissions:
id-token: write
pages: write
runs-on: ubuntu-latest
steps:
- uses: actions/deploy-pages@v2