Skip to content

Instantly share code, notes, and snippets.

@Ben1980
Created April 19, 2020 18:34
Show Gist options
  • Save Ben1980/cd15dfabed5e34f252707bf3b6583162 to your computer and use it in GitHub Desktop.
Save Ben1980/cd15dfabed5e34f252707bf3b6583162 to your computer and use it in GitHub Desktop.
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