doxygen.yml 545 B

1234567891011121314151617181920212223242526
  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@v6
  11. - name: Doxygen Action
  12. uses: mattnotmitt/[email protected]
  13. with:
  14. doxyfile-path: "./Doxyfile"
  15. working-directory: "."
  16. - name: Deploy
  17. uses: peaceiris/actions-gh-pages@v4
  18. with:
  19. github_token: ${{ secrets.GITHUB_TOKEN }}
  20. publish_dir: ./Build/Doxygen
  21. force_orphan: true