Skip to content

Commit f2c49ad

Browse files
Create GH action to auto-create documentation (commontk#82)
- updated Doxyfile to current doxygen version (using doxygen -u) - minor documentation fixes
1 parent 2a24a2b commit f2c49ad

File tree

3 files changed

+400
-248
lines changed

3 files changed

+400
-248
lines changed

.github/workflows/builddocs.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Build and Deploy Documentation
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
8+
defaults:
9+
run:
10+
shell: bash
11+
12+
jobs:
13+
build_docs:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- name: Checkout master
17+
uses: actions/checkout@v3
18+
19+
- name: Install Doxygen
20+
run: sudo apt-get install doxygen graphviz -y
21+
22+
- name: Build documentation
23+
run: |
24+
cd doxygen
25+
doxygen
26+
touch html/.nojekyll
27+
cd ..
28+
29+
- name: Deploy to GitHub Pages
30+
uses: JamesIves/github-pages-deploy-action@v4
31+
with:
32+
folder: doxygen/html

0 commit comments

Comments
 (0)