Added in a threading lib from the c bindings #234
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: Generate Doxygen Documentation | |
| on: | |
| push: | |
| branches: | |
| - main | |
| permissions: | |
| contents: write | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v3 | |
| - name: Install Doxygen and Graphviz | |
| run: sudo apt-get update && sudo apt-get install -y doxygen graphviz | |
| - name: Run Doxygen | |
| run: doxygen Doxyfile | |
| - name: Verify Doxygen output | |
| run: ls -la docs/doxygen/ | |
| - name: Deploy to GitHub Pages | |
| uses: peaceiris/actions-gh-pages@v3 | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| publish_dir: ./docs/doxygen | |
| publish_branch: gh-pages | |
| user_name: 'github-actions[bot]' | |
| user_email: 'github-actions[bot]@users.noreply.github.com' | |
| commit_message: 'Update Doxygen documentation' | |
| keep_files: false | |
| force_orphan: true | |
| enable_jekyll: false |