Skip to content

Build and deploy documentation #5

Build and deploy documentation

Build and deploy documentation #5

Workflow file for this run

name: Doxygen
run-name: "Build and deploy documentation"
on:
push:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: true
- name: Build documentation
uses: mattnotmitt/doxygen-action@v1.9.5
- name: Upload artefact
uses: actions/upload-pages-artifact@v3
with:
path: docs/html
deploy:
needs: build
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
uses: actions/deploy-pages@v4
id: deployment