Skip to content

bump to v2.3.3

bump to v2.3.3 #59

name: API docs / jupyterbook
# We should trigger this from an upload event
on:
push: # We publish the beta docs as well
branches:
- master
- dev
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
pip install numpy
pip install scipy
pip install Cython
pip install jupyter-book
- name: Install latest stripy
run: |
pip install .
- name: Build docs with jupyterbook
shell: bash -l {0}
run: |
VERSION=`python setup.py --version`
echo "VERSION=$(echo $VERSION)" >> $GITHUB_ENV
cd jupyterbook
./build-book.sh
# Note deploy key needs the ----BEGIN ... KEY---- lines too
## Always deploy to version directory
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
destination_dir: ${{ env.VERSION }}
publish_dir: jupyterbook/_build/html