Skip to content

Added in a threading lib from the c bindings #234

Added in a threading lib from the c bindings

Added in a threading lib from the c bindings #234

Workflow file for this run

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