Skip to content

Erasure support not optional (through global macro). #41

Erasure support not optional (through global macro).

Erasure support not optional (through global macro). #41

Workflow file for this run

name: Build & Publish Doxygen
on:
push:
branches: [ main ] # or your default branch
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Doxygen & Graphviz
run: |
sudo apt-get update
sudo apt-get install -y doxygen graphviz
- name: Build Doxygen
run: doxygen Doxyfile
- name: Configure Pages
uses: actions/configure-pages@v5
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
# match your Doxyfile output (e.g. build/docs/html)
path: doc/html
deploy:
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4