minor doc edits, pre-master merge #24
This file contains 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
# workflow to publish doxygen generated pages | |
# taken from https://github.com/DenverCoder1/doxygen-github-pages-action | |
name: Doxygen GitHub Pages Deploy Action | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: DenverCoder1/[email protected] | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
config_file: misc/doxyfile | |
branch: doxydocs | |
folder: doc_html |