forked from ls1mardyn/ls1-mardyn
-
Notifications
You must be signed in to change notification settings - Fork 0
32 lines (26 loc) · 941 Bytes
/
doxygen.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
name: Doxygen Build & Deploy
# execute this action on each push to remote master
on:
push:
branches: [ master ]
jobs:
doxygen:
runs-on: ubuntu-latest
steps:
# get current state from git
- uses: actions/checkout@v3
- name: Get doxygen
run: sudo apt-get install doxygen -y
# build Doxygen documentation from Doxyfile in project root folder
# output is found as specified in Doxyfile in: doxygen_doc/html
- name: Build documentation
uses: mattnotmitt/[email protected]
with:
working-directory: '.'
doxyfile-path: './Doxyfile'
# host Doxygen output on ls1's github pages site (ls1mardyn.github.io/ls1-mardyn)
- name: Deploy documentation to GitHub pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: './doxygen_doc/html'