-
Notifications
You must be signed in to change notification settings - Fork 1
40 lines (34 loc) · 1.05 KB
/
doxygen.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
name: Doxygen
on:
push:
branches: [ "main" ]
workflow_dispatch:
permissions:
contents: write
jobs:
doxygen:
runs-on: ubuntu-latest
steps:
- name: Install Doxygen and Xsltproc
run: |
sudo apt-get update
sudo apt-get install -y doxygen
sudo apt-get install -y graphviz
sudo apt-get install xsltproc
- uses: actions/checkout@v4
- name: Generate docs
run: doxygen Doxyfile
- name: Generate keywords.txt
run: |
xsltproc doxygen2keywords.xsl docs/xml/index.xml >keywords.txt
echo "-----------------------------------------------------------"
cat keywords.txt
echo "-----------------------------------------------------------"
- name: Copy confighelper.html
run: |
cp extras/confighelper/confighelper.html docs/html/
- name: Deploy to GitHub Pages
uses: JamesIves/github-pages-deploy-action@releases/v4
with:
BRANCH: gh-pages
FOLDER: docs/html