doxygen.yml 512 B

12345678910111213141516171819202122232425
  1. name: Doxygen Action
  2. on:
  3. push:
  4. branches: [ master ]
  5. # Builds and deploys doxygen documentation
  6. jobs:
  7. build:
  8. runs-on: ubuntu-latest
  9. steps:
  10. - uses: actions/checkout@v2
  11. - name: Doxygen Action
  12. uses: mattnotmitt/doxygen-action@v1
  13. with:
  14. doxyfile-path: "./Doxyfile"
  15. working-directory: "."
  16. - name: Deploy
  17. uses: peaceiris/actions-gh-pages@v3
  18. with:
  19. github_token: ${{ secrets.GITHUB_TOKEN }}
  20. publish_dir: ./Build/Doxygen