-
-
Notifications
You must be signed in to change notification settings - Fork 0
32 lines (28 loc) · 774 Bytes
/
doxygen.yml
File metadata and controls
32 lines (28 loc) · 774 Bytes
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
name: Build docs
on: [workflow_dispatch]
jobs:
build:
name: Create docs
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Run doxygen
run: |
cd scripts/docs
chmod +x gen_doc.sh
./gen_doc.sh
cd ../../
- name: Upload docs
run: |
git config --global user.email "eduardo.hopperdietzel@alumnos.uach.cl"
git config --global user.name "Eduardo Hopperdietzel"
git checkout -b docs
rm -r *
rm -r .github
rm .gitignore
cp -r ../xdgkit_tmp/html ./
mv html docs
git add .
git commit -m "Doxygen"
git push -f --set-upstream origin docs