Refactor build script to use PowerShell for downloading and extractin… #34
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 Documentation | |
| on: [push, pull_request, workflow_dispatch] | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Install Graphviz | |
| run: sudo apt-get install graphviz -y | |
| shell: bash | |
| - uses: DenverCoder1/doxygen-github-pages-action@v1.1.0 | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| branch: gh-pages | |
| folder: docs/html | |
| config_file: Doxyfile |