Skip to content

Commit 44c9c8e

Browse files
committed
Added doxygen
1 parent 3092890 commit 44c9c8e

File tree

3 files changed

+2544
-0
lines changed

3 files changed

+2544
-0
lines changed

.github/workflows/docs.yml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Docs
2+
on:
3+
push:
4+
branches: [master]
5+
jobs:
6+
docs:
7+
name: Doxygen
8+
runs-on: ubuntu-latest
9+
steps:
10+
- run: doxygen doxygen.conf
11+
- run: cp -r docs/Documentation ../docs
12+
- run: git checkout gh-pages
13+
- run: rm -r master && cp -r ../docs master
14+
- run: touch .nojekyll && git add .
15+
- run: git config user.name "github-actions[bot]" && git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
16+
- run: git commit -m "Documentation for ${{github.sha}}"

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
/vendor/
2+
/docs/

0 commit comments

Comments
 (0)