Skip to content

Doxygen

Doxygen #18

Workflow file for this run

name: documentation
on: [pull_request]
permissions:
contents: write
jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Doxygen Build
uses: mattnotmitt/[email protected]
with:
doxyfile-path: 'docs/doxygen/Doxyfile.in'
- uses: actions/setup-python@v3
- name: Install dependencies
run: |
pip install -r ./docs/sphinx/requirements.txt
- name: Sphinx build
run: |
sphinx-build docs ./sphinx/_build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
if: ${{ github.event_name == 'pull_request' }}
with:
publish_branch: gh-pages
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./sphinx/_build/
force_orphan: true