Issue-348: Interop is not compatible with Numpy 2.0.0 (#349) #123
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. | |