Skip to content

🐛 Fix compilation error from invalid include-path #15

🐛 Fix compilation error from invalid include-path

🐛 Fix compilation error from invalid include-path #15

Workflow file for this run

name: Deploy with Doxygen
on:
push:
branches: ["master"]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
# Single deploy job since we're just deploying
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: true
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Doxygen
uses: mattnotmitt/doxygen-action@edge
with:
doxyfile-path: "./Doxyfile"
working-directory: "."
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: './site/html'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4