chore(deps): bump actions/upload-artifact from 4 to 5 #140
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: Build and Deploy Documentation | |
| on: | |
| push: | |
| branches: | |
| - main | |
| defaults: | |
| run: | |
| shell: bash | |
| jobs: | |
| build_docs: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout main | |
| uses: actions/checkout@v5 | |
| - name: Install Doxygen | |
| run: sudo apt-get install doxygen graphviz -y | |
| - name: Build documentation | |
| run: | | |
| cd doxygen | |
| doxygen | |
| touch html/.nojekyll | |
| cd .. | |
| - name: Deploy to GitHub Pages | |
| uses: JamesIves/github-pages-deploy-action@v4 | |
| with: | |
| folder: doxygen/html |