Skip to content

Commit 63ff098

Browse files
committed
Add deploy docs release action.
1 parent f63a6dd commit 63ff098

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/release.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Release
2+
3+
on:
4+
release:
5+
types: [published]
6+
workflow_dispatch:
7+
8+
jobs:
9+
build_docs:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v3
13+
- name: Doxygen Action
14+
uses: mattnotmitt/[email protected]
15+
with:
16+
working-directory: 'docs/'
17+
18+
- name: Deploy
19+
uses: peaceiris/actions-gh-pages@v3
20+
with:
21+
github_token: ${{ secrets.GITHUB_TOKEN }}
22+
publish_dir: ./docs/doxydocs/html

0 commit comments

Comments
 (0)