We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 213fc53 + 6037ab4 commit e1bb443Copy full SHA for e1bb443
.github/workflows/generate_documentation.yml
@@ -1,11 +1,30 @@
1
name: documentation-generation
2
-on: [push]
+on:
3
+ push:
4
+ branches:
5
+ - main
6
+
7
+permissions:
8
+ contents: read
9
+ pages: write
10
+ id-token: write
11
12
jobs:
- doxygen:
13
+ generate-documentation:
14
runs-on: ubuntu-latest
15
steps:
- - uses: actions/checkout@v4
- - name: generate-documentation
16
+ - name: checkout
17
+ uses: actions/checkout@v4
18
+ - name: run-doxygen
19
uses: mattnotmitt/doxygen-action@1.12.0
20
with:
21
doxyfile-path: 'docs/doxyfile'
22
+ - name: Setup Pages
23
+ uses: actions/configure-pages@v4
24
+ - name: Upload artifact
25
+ uses: actions/upload-pages-artifact@v3
26
+ with:
27
+ path: 'docs/html'
28
+ - name: Deploy to GitHub Pages
29
+ id: deployment
30
+ uses: actions/deploy-pages@v4
0 commit comments