We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f63a6dd commit 63ff098Copy full SHA for 63ff098
1 file changed
.github/workflows/release.yml
@@ -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/doxygen-action@v1.9.1
15
+ with:
16
+ working-directory: 'docs/'
17
18
+ - name: Deploy
19
+ uses: peaceiris/actions-gh-pages@v3
20
21
+ github_token: ${{ secrets.GITHUB_TOKEN }}
22
+ publish_dir: ./docs/doxydocs/html
0 commit comments