Skip to content

Commit 05b2793

Browse files
committed
Add workflow
1 parent d24f549 commit 05b2793

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)