Fix Doxygen build

This commit is contained in:
John Freeman
2020-03-16 11:04:06 -05:00
committed by manojsdoshi
parent 758a3792eb
commit 3e9cff9287
7 changed files with 150 additions and 129 deletions

23
.github/workflows/doxygen.yml vendored Normal file
View File

@@ -0,0 +1,23 @@
name: Build and publish Doxygen documentation
on:
push:
branches:
- develop
jobs:
job:
runs-on: ubuntu-18.04
steps:
- name: checkout
uses: actions/checkout@v2
- name: set OUTPUT_DIRECTORY
run: echo 'OUTPUT_DIRECTORY = html' >> docs/Doxyfile
- name: build
uses: mattnotmitt/doxygen-action@v1
with:
doxyfile-path: 'docs/Doxyfile'
- name: publish
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./html