Skip to content

Bump pypa/cibuildwheel from 2.17.0 to 2.18.0 #192

Bump pypa/cibuildwheel from 2.17.0 to 2.18.0

Bump pypa/cibuildwheel from 2.17.0 to 2.18.0 #192

Workflow file for this run

name: Build and Deploy docs
on:
pull_request:
push:
tags:
- "v*"
jobs:
run:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Micromamba
uses: mamba-org/setup-micromamba@v1
with:
environment-name: TEST
init-shell: bash
create-args: >-
python=3 numpy --file requirements-dev.txt --channel conda-forge
- name: Install gsw
shell: bash -l {0}
run: |
python -m pip install -e . --no-deps --force-reinstall
- name: Build documentation
shell: bash -l {0}
run: >
set -e
&& pushd docs
&& make clean html linkcheck
&& popd
- name: GitHub Pages action
if: success() && github.event_name == 'release'
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: docs/_build/html