Merge pull request #108 from hytech-racing/revert-107-MCUDoxygen #77
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: generate doxygen docs and deploy to github pages | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
gen_docs: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v2 | |
- name: gen docs | |
uses: mattnotmitt/doxygen-action@v1.9.5 | |
with: | |
doxyfile-path: 'Doxyfile' | |
- name: Deploy to GitHub Pages | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./html # Set this to the Doxygen output directory | |
keep_files: false # Set to true to keep files that are not in the Doxygen output directory |