Created
April 19, 2020 18:34
-
-
Save Ben1980/cd15dfabed5e34f252707bf3b6583162 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Documentation | |
on: #(1) | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
page_build: | |
jobs: | |
doxygen: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Build documentation | |
uses: mattnotmitt/doxygen-action@v1 #(2) | |
with: | |
doxyfile-path: ./Doxyfile #(3) | |
- name: Deploy documentation | |
uses: peaceiris/actions-gh-pages@v3 #(4) | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./docs #(5) | |
commit_message: '[ci skip] ${{ github.event.head_commit.message }}' #(6) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment