Feat/walker querying (#6) #82
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
# Important note: | |
# The deployment to gh-pages must not be set to Github Actions | |
# More here: https://github.com/JamesIves/github-pages-deploy-action/discussions/1190 | |
name: Build and deploy Doxygen to GitHub Pages | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: DenverCoder1/[email protected] | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
# Target branch | |
branch: gh-pages | |
# Folder where Doxygen will generate the HTML build files. | |
folder: docs | |
# Source Doxyfile | |
config_file: Doxyfile |