Skip to content

makes agentic access general to agents instead of just claude #123

makes agentic access general to agents instead of just claude

makes agentic access general to agents instead of just claude #123

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:
runs-on: ubuntu-latest
permissions:
contents: read
pages: write
id-token: write
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: Setup Pages
uses: actions/configure-pages@v5
- name: Upload Pages artifact
uses: actions/upload-pages-artifact@v3
with:
path: docs/doxygen/html
deploy:
needs: build
runs-on: ubuntu-latest
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v5