Skip to content

fixes presets

fixes presets #75

Workflow file for this run

name: Docs
on:
push:
branches: [main]
# Allow manual trigger from the Actions tab
workflow_dispatch:
concurrency:
group: docs-${{ github.ref }}
cancel-in-progress: true
jobs:
build-and-deploy:
runs-on: ubuntu-latest
permissions:
contents: write # Needed for pushing to gh-pages
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Doxygen and Graphviz
run: |
sudo apt-get update -qq
sudo apt-get install -y doxygen graphviz
doxygen --version
- name: Generate documentation
run: doxygen Doxyfile
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: docs/doxygen/html
# Keep the gh-pages branch history lean
force_orphan: true
enable_jekyll: false