acid-drop- Hacking the planet from a LilyGo T-Deck using custom firmware |
git clone git://git.acid.vegas/acid-drop.git |
Log | Files | Refs | Archive | README | LICENSE |
doxygen.yml (561B)
1 name: Doxygen 2 3 on: 4 push: 5 branches: [ master ] 6 workflow_dispatch: 7 8 jobs: 9 doxygen: 10 runs-on: ubuntu-latest 11 steps: 12 - name: Install Doxygen 13 run: | 14 sudo apt-get update 15 sudo apt-get install -y doxygen 16 - uses: actions/checkout@v2 17 18 - name: Generate docs 19 run: doxygen Doxyfile 20 21 - name: Deploy to GitHub Pages 22 uses: JamesIves/github-pages-deploy-action@releases/v3 23 with: 24 GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 25 BRANCH: gh-pages 26 FOLDER: docs/html