Skip to content

Add workflow to build and deploy documentation #1

Add workflow to build and deploy documentation

Add workflow to build and deploy documentation #1

Workflow file for this run

name: Doxygen
run-name: "Build and deploy documentation"
on:
push:
jobs:
build:
- name: Checkout

Check failure on line 8 in .github/workflows/doxygen.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/doxygen.yml

Invalid workflow file

You have an error in your yaml syntax on line 8
uses: actions/checkout@v4
- name: Build documentation
run: doxygen
- name: Upload artefact
uses: actions/upload-pages-artifact@v3
with:
path: docs/html
deploy:
needs: site
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