Merge pull request #855 from wildmeshing/mtao/update_hashes #338
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 Deploy | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v4.1.1 | |
| - name: Update APT | |
| run: | | |
| sudo apt-get update | |
| - name: Install Dependencies | |
| run: | | |
| sudo apt-get -o Acquire::Retries=3 install \ | |
| doxygen \ | |
| graphviz | |
| - name: Setup Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: '3.10' | |
| - name: Generate Doxygen Documentation | |
| run: doxygen docs/Doxyfile.in | |
| - name: Create .nojekyll | |
| run: touch docs/html/.nojekyll | |
| - name: Deploy 🚀 | |
| uses: JamesIves/github-pages-deploy-action@v4.3.3 | |
| with: | |
| branch: gh-pages # The branch the action should deploy to. | |
| folder: docs/html/ # The folder the action should deploy. |