Merge pull request #124 from patduckless/master #22
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: "Publish Doxygen Docs" | |
on: | |
push: | |
branches: | |
- "master" | |
- "esp32" | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build Doxygen | |
uses: mattnotmitt/[email protected] | |
with: | |
doxyfile-path: 'Doxyfile' | |
- name: Publish Doxygen to GitHub Pages | |
uses: peaceiris/[email protected] | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./apidocs/html |