Skip to content

Merge branch 'main' of https://github.com/QoroQuantum/maestro #144

Merge branch 'main' of https://github.com/QoroQuantum/maestro

Merge branch 'main' of https://github.com/QoroQuantum/maestro #144

Workflow file for this run

name: Deploy Doxygen Documentation
on:
push:
branches: ["main"]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v5
- name: Install Doxygen
run: |
sudo apt-get update
sudo apt-get install -y doxygen graphviz
- name: Run Doxygen
run: doxygen Doxyfile
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Upload Artifact
uses: actions/upload-pages-artifact@v3
with:
path: './docs/html'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v5