Added ability to accept zipped fseq files when using ESP32 CPU #35
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 | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
gendocs: | |
runs-on: ubuntu-latest | |
steps: | |
# Checkout ESPixelStick | |
- uses: actions/checkout@v4 | |
- name: Build doxygen pages | |
uses: mattnotmitt/doxygen-action@v1 | |
with: | |
additional-packages: font-fira-code-nerd | |
working-directory: ".doxygen" | |
doxyfile-path: "Doxyfile" | |
- name: Deploy to gh-pages | |
uses: peaceiris/actions-gh-pages@v4 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: .doxygen/doc/html | |
destination_dir: doxy |