We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 533064e commit 5450eb4Copy full SHA for 5450eb4
.github/workflows/doxygen.yml
@@ -0,0 +1,36 @@
1
+name: Doxygen
2
+
3
+on:
4
+ push:
5
+ paths:
6
+ - "**/modules/**"
7
+ - "!**/native/**/*"
8
+ branches:
9
+ - "**"
10
+ - "!main"
11
+ pull_request:
12
13
14
15
16
+ - "dev/**"
17
+ workflow_dispatch:
18
19
+concurrency:
20
+ group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
21
+ cancel-in-progress: true
22
23
24
+jobs:
25
+ deploy:
26
+ runs-on: ubuntu-latest
27
+ permissions:
28
+ contents: write
29
+ steps:
30
+ - uses: DenverCoder1/doxygen-github-pages-action@v2.0.0
31
+ with:
32
+ github_token: ${{ secrets.GITHUB_TOKEN }}
33
+ branch: gh-pages
34
+ folder: docs/html
35
+ config_file: Doxyfile
36
+ doxygen_version: 1.14.0
0 commit comments