1name: Update Docs 2 3on: 4 push: 5 branches: [ main ] 6 7jobs: 8 build: 9 runs-on: ubuntu-latest 10 11 steps: 12 - uses: actions/checkout@v2 13 14 - name: Doxygen Action 15 uses: mattnotmitt/doxygen-action@v1.1.0 16 with: 17 doxyfile-path: "./Doxyfile" 18 working-directory: "." 19 20 - name: Deploy 21 uses: peaceiris/actions-gh-pages@v3 22 with: 23 github_token: ${{ secrets.GITHUB_TOKEN }} 24 publish_dir: ./docs/reference 25