Testing CI action for code coverage #185
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
name: Doxygen generation | |
on: | |
push: | |
branches: | |
- master | |
- feature/* | |
jobs: | |
build-doxygen: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
# Build the HTML documentation | |
- name: Doxygen Action | |
uses: mattnotmitt/[email protected] | |
with: | |
doxyfile-path: ./Doxyfile | |
working-directory: ./doc | |
# Deploy the HTML documentation to GitHub Pages | |
- name: GH Pages Deployment | |
uses: peaceiris/actions-gh-pages@v4 | |
with: | |
deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }} | |
external_repository: terranum-ch/ToolMap-dev-doc | |
publish_dir: ./doc/html/ | |
destination_dir: doxygen | |
enable_jekyll: true | |
allow_empty_commit: false | |
force_orphan: false | |
publish_branch: main |