Skip to content

CD

CD #12

Workflow file for this run

name: CD
on:
workflow_dispatch:
release:
types: [released]
jobs:
build-wheels:
# if: ${{ false }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v4
- name: Build wheels
uses: pypa/cibuildwheel@v2.20.0
env:
CIBW_SKIP: pp* # Skip PyPy
MACOSX_DEPLOYMENT_TARGET: "10.14"
- uses: actions/upload-artifact@v4
with:
name: wheels-${{ matrix.os }}-${{ strategy.job-index }}
path: ./wheelhouse/*.whl
make-source-dist:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build SDist
run: pipx run build --sdist
- uses: actions/upload-artifact@v4
with:
path: dist/*.tar.gz