Skip to content

Merge branch 'add_svg_writer' #9

Merge branch 'add_svg_writer'

Merge branch 'add_svg_writer' #9

Workflow file for this run

name: "Build documentation"
on:
pull_request:
branches:
- main
push:
branches:
- main
workflow_dispatch:
jobs:
build:
timeout-minutes: 5
runs-on: ubuntu-24.04
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- name: Gather dependencies
run: |
sudo apt-get update
sudo apt-get install doxygen
- name: Build HTML
run: doxygen .doxygen.cfg
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: html-docs
path: docs/html
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
if: github.ref == 'refs/heads/main'
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: docs/html