Skip to content

Commit 831254e

Browse files
committed
doxygen build action
1 parent 9345b0d commit 831254e

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/doxygen.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Doxygen Action
2+
on:
3+
push:
4+
branches:
5+
- master
6+
7+
jobs:
8+
doxygen:
9+
runs-on: ${{ matrix. os }}
10+
strategy:
11+
matrix:
12+
os: [ubuntu-latest]
13+
14+
steps:
15+
- uses: actions/checkout@v2
16+
17+
- name: Doxygen Build
18+
uses: mattnotmitt/doxygen-action@v1
19+
20+
- name: Doxygen Deploy
21+
uses: peaceiris/actions-gh-pages@v3
22+
with:
23+
github_token: ${{ secrets.GITHUB_TOKEN }}
24+
publish_dir: ./docs/html

0 commit comments

Comments
 (0)