Skip to content

Oss release 28.0.0-rc5 created 2023-12-08-13-59 (#116) #44

Oss release 28.0.0-rc5 created 2023-12-08-13-59 (#116)

Oss release 28.0.0-rc5 created 2023-12-08-13-59 (#116) #44

Workflow file for this run

name: Update docs
on:
push:
branches:
- master
jobs:
publish_docs:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
with:
submodules: 'recursive'
- name: Create Build Environment
run: |
cmake -E make_directory ${{runner.workspace}}/build
sudo apt install graphviz doxygen
- name: Build docs
working-directory: ${{runner.workspace}}/build
shell: bash
run: |
cmake $GITHUB_WORKSPACE
cmake --build . --target doc
- name: Deploy to github pages
uses: JamesIves/github-pages-deploy-action@v4.4.1
with:
branch: gh-pages
folder: ${{runner.workspace}}/build/doc/html