diff options
| author | theo3 <arisstephenson2@gmail.com> | 2022-01-04 21:38:01 -0800 |
|---|---|---|
| committer | theo3 <arisstephenson2@gmail.com> | 2022-01-04 21:38:01 -0800 |
| commit | 27ee1473ea14c8c756484058327c681a720b6309 (patch) | |
| tree | e1271188d71abc1428f41cf8b1f5d69f835a8db3 /.github/workflows | |
| parent | fb6d16f20d4935a53b573a14c5c1d6e9db726968 (diff) | |
preliminary doxygen support
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/doxygen.yml | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/.github/workflows/doxygen.yml b/.github/workflows/doxygen.yml new file mode 100644 index 00000000..e4e89b6b --- /dev/null +++ b/.github/workflows/doxygen.yml @@ -0,0 +1,22 @@ +name: run Doxygen to generate docs + +on: + push: + branches: + - master + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: generate docs + uses: mattnotmitt/doxygen-action@v1 + with: + doxyfile-path: 'Doxyfile' + - name: deploy docs to github pages + uses: peaceiris/actions-gh-pages@v3 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + publish_dir: ./docs/doxygen |
