Skip to content

Commit bcb2e06

Browse files
committed
Merging commit
2 parents f234ac4 + d0fef34 commit bcb2e06

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed

.github/workflows/doxygen.yml

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
name: Documentation
2+
3+
# Controls when the action will run. Triggers the workflow on push or pull request
4+
# events but only for the master branch
5+
on:
6+
push:
7+
branches: [ master ]
8+
9+
jobs:
10+
build-documentation:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- uses: actions/checkout@v2
15+
16+
# Build the HTML documentation
17+
- name: Doxygen Action
18+
uses: mattnotmitt/[email protected]
19+
20+
# Deploy the HTML documentation to GitHub Pages
21+
- name: GH Pages Deployment
22+
uses: peaceiris/actions-gh-pages@v3
23+
with:
24+
github_token: ${{ secrets.GITHUB_TOKEN }}
25+
publish_dir: ./docs
26+
destination_dir: docs
27+
allow_empty_commit: false
28+
cname: amurclient.online
29+
enable_jekyll: true
30+
#force_orphan: true
31+
#publish_branch: gh-pages
32+
#destination_dir: docs
33+
34+
- name: notification
35+
if: cancelled() == false
36+
uses: xinthink/[email protected]
37+
with:
38+
botToken: ${{ secrets.BotToken }}
39+
chatId: ${{ secrets.ChatID }}
40+
jobStatus: ${{ job.status }}

0 commit comments

Comments
 (0)