Update README.md #118
This file contains hidden or 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 Action | |
| # Trigger the workflow on push to the master branch | |
| on: | |
| push: | |
| branches: [ master ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| # Checks-out your repository under $GITHUB_WORKSPACE | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| # Create a Doxygen documentation | |
| - name: Doxygen Action | |
| uses: mattnotmitt/[email protected] | |
| with: | |
| working-directory: "./doc/" | |
| doxyfile-path: "./Doxyfile" | |
| # Deploy the documentation to GitHub Pages | |
| - name: Deploy to GitHub Pages | |
| uses: peaceiris/actions-gh-pages@v4 | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| publish_dir: ./doc/html |