Skip to content

Workflow file for this run

name: Build Documentation and Deploy
on:
push:
branches:
- main
jobs:
build-and-deploy:
concurrency: ci-${{ github.ref }}
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Build
run: |
wget https://cloud.cubert-gmbh.de/index.php/s/m1WfR66TjcGl96z/download
unzip download
cd latest_release
cd Ubuntu\ 20.04/
sudo dpkg -i --ignore-depends --force-overwrite ./cuviscommon_3.2.3-1.deb
sudo dpkg -i --ignore-depends --force-overwrite ./libcuvis_3.2.3-1.deb
mkdir _build
cmake -B ./_build .
cmake --build "_build" --target ALL
- name: Deploy
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: build/doc/sphinx