We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5450eeb commit aafb2efCopy full SHA for aafb2ef
.github/workflows/doxygen.yml
@@ -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
@@ -3,6 +3,9 @@
##
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
+docs
# User-specific files
*.rsuser
*.suo
0 commit comments