Skip to content

Issue-348: Interop is not compatible with Numpy 2.0.0 (#349) #123

Issue-348: Interop is not compatible with Numpy 2.0.0 (#349)

Issue-348: Interop is not compatible with Numpy 2.0.0 (#349) #123

Workflow file for this run

name: HTML Documentation on Github Pages
on:
push:
branches: [ "master" ]
tags: [ "*" ]
pull_request:
branches: [ "*" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Build Documentation
run: docker run --rm -v ${{github.workspace}}/:/io ezralanglois/interop bash -c "cmake /io -Bbuild -DDOCS_OUTPUT_PATH=/io/dist && cmake --build build --target doc"
- name: Test Documentation
run: ls dist/html
- name: Deploy
uses: JamesIves/[email protected]
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
with:
branch: gh-pages # The branch the action should deploy to.
folder: dist/html # The folder the action should deploy.