Skip to content

Commit aafb2ef

Browse files
committed
First attempt at adding automatically generated Doxygen docs
1 parent 5450eeb commit aafb2ef

File tree

3 files changed

+2687
-0
lines changed

3 files changed

+2687
-0
lines changed

.github/workflows/doxygen.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Generate Doxygen documentation
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- name: Checkout repository
14+
uses: actions/checkout@v2
15+
16+
- name: Set up Doxygen
17+
run: sudo apt-get install doxygen graphviz
18+
19+
- name: Generate Doxygen documentation
20+
run: doxygen Doxyfile
21+
22+
- name: Deploy to GitHub Pages
23+
uses: peaceiris/actions-gh-pages@v3
24+
with:
25+
github_token: ${{ secrets.GITHUB_TOKEN }}
26+
publish_dir: ./docs/html

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
##
44
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
55

6+
docs
7+
8+
69
# User-specific files
710
*.rsuser
811
*.suo

0 commit comments

Comments
 (0)