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 d24f549 commit 05b2793Copy full SHA for 05b2793
.github/workflows/doxygen-gh-pages.yml
@@ -0,0 +1,25 @@
1
+name: Deploy Doxygen docuemnt on GitHub Pages
2
+on: [release, workflow_dispatch]
3
+#branches:
4
+# - main
5
+# - master
6
+defaults:
7
+ run:
8
+ shell: bash
9
+
10
+concurrency:
11
+ group: ${{ github.workflow }}-${{ github.ref }}
12
+ cancel-in-progress: true
13
14
+jobs:
15
+ deploy:
16
+ runs-on: ubuntu-latest
17
+ steps:
18
+ - name: Make document
19
+ uses: m5stack/M5Utility/.github/actions/doxygen@develop
20
+ with:
21
+ doxygen_version: 1.11.0
22
+ github_token: ${{ secrets.GITHUB_TOKEN }}
23
+ branch: gh-pages
24
+ folder: docs/html
25
+ config_file: docs/Doxyfile
0 commit comments