-
-
Notifications
You must be signed in to change notification settings - Fork 115
86 lines (71 loc) · 1.86 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
84
85
86
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
- run: |
git clone --depth 1 --branch v2.3.4 https://github.com/jothepro/doxygen-awesome-css.git docs/api/doxygen-awesome-css
- run : |
mkdir -p site/api
- uses: mattnotmitt/doxygen-action@v1
with:
doxyfile-path: ./docs/api/Doxyfile
- run: |
tar -cvf artifact.tar -C site/ .
- uses: actions/upload-artifact@v4
with:
name: doxygen-pages
path: |
artifact.tar
build-mkdocs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: |
pip install -r docs/main/requirements.txt
- run: |
mkdocs build -f docs/main/mkdocs.yml -d ../../site
- run: |
tar -cvf artifact.tar -C site/ .
- uses: actions/upload-artifact@v4
with:
name: mkdocs-pages
path: |
artifact.tar
merge:
needs:
- build-doxygen
- build-mkdocs
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v4
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@v3
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@v4