Skip to content

Patch: fix version (#9) #13

Patch: fix version (#9)

Patch: fix version (#9) #13

Workflow file for this run

name: deploy-docs
on:
push:
tags:
- 'v*'
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
contents: write # To push a branch
pages: write # To push to a GitHub Pages site
id-token: write # To update the deployment status
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: init
run: sudo apt update -yqq && sudo apt install doxygen
- name: build docs
run: cmake -P scripts/build_docs.cmake
- name: setup pages
uses: actions/configure-pages@v4
- name: upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: 'docs/html'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4