We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56aad49 commit c180b5bCopy full SHA for c180b5b
1 file changed
.github/workflows/docs.yml
@@ -0,0 +1,25 @@
1
+name: Generate Doxygen Docs
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
8
+jobs:
9
+ docs:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - name: Checkout source
13
+ uses: actions/checkout@v4
14
15
+ - name: Install Doxygen
16
+ run: sudo apt-get install doxygen graphviz -y
17
18
+ - name: Generate documentation
19
+ run: doxygen Doxyfile
20
21
+ - name: Deploy to GitHub Pages
22
+ uses: peaceiris/actions-gh-pages@v3
23
+ with:
24
+ github_token: ${{ secrets.GITHUB_TOKEN }}
25
+ publish_dir: ./docs/html
0 commit comments