Skip to content

Commit 1fde891

Browse files
authored
Create doc.yml
1 parent f2e2049 commit 1fde891

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/doc.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: GitHub Pages
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
8+
jobs:
9+
deploy:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Generate docs
13+
uses: mattnotmitt/[email protected]
14+
with:
15+
doxyfile-path: './Doxygen'
16+
enable-latex: true
17+
- name: Deploy to GitHub Pages
18+
uses: peaceiris/actions-gh-pages@v3
19+
if: ${{ github.ref == 'refs/heads/master' }}
20+
with:
21+
github_token: ${{ secrets.GITHUB_TOKEN }}
22+
publish_dir: ./

0 commit comments

Comments
 (0)