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