Skip to content

Commit c951773

Browse files
committed
Add initial doxygen generator support
1 parent 1267bc1 commit c951773

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.github/workflows/docs.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Docs
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
7+
jobs:
8+
Docs:
9+
runs-on: ubuntu-latest
10+
permissions:
11+
actions: read
12+
contents: write
13+
steps:
14+
- name: Checkout
15+
uses: actions/checkout@v3
16+
- name: Install Doxygen
17+
run: sudo apt update && sudo apt-get install doxygen graphviz -y
18+
- name: Generate Doxygen Documentation
19+
run: doxygen Doxyfile
20+
- name: Create .nojekyll
21+
run: touch docs/html/.nojekyll
22+
- name: Deploy to GitHub Pages
23+
uses: JamesIves/github-pages-deploy-action@v4
24+
with:
25+
branch: docs
26+
folder: docs/html

0 commit comments

Comments
 (0)