Skip to content

Build and upload to PyPI #27

Build and upload to PyPI

Build and upload to PyPI #27

Workflow file for this run

name: Build and upload to PyPI
on:
# push:
# branches:
# - main
# pull_request:
# branches:
# - main
release:
types:
- published
workflow_dispatch:
jobs:
build_wheels:
name: Build wheels on ${{ matrix.os }}
os: ${{ matrix.os }}

Check failure on line 18 in .github/workflows/cibuildwheel.yml

View workflow run for this annotation

GitHub Actions / Build and upload to PyPI

Invalid workflow file

The workflow is not valid. .github/workflows/cibuildwheel.yml (Line: 18, Col: 5): Unexpected value 'os' .github/workflows/cibuildwheel.yml (Line: 17, Col: 5): Required property is missing: runs-on

Check failure on line 18 in .github/workflows/cibuildwheel.yml

View workflow run for this annotation

GitHub Actions / Build and upload to PyPI

Invalid workflow file

The workflow is not valid. .github/workflows/cibuildwheel.yml (Line: 18, Col: 5): Unexpected value 'os' .github/workflows/cibuildwheel.yml (Line: 17, Col: 5): Required property is missing: runs-on
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-13, macos-14]
steps:
- uses: actions/checkout@v4
- name: Set up QEMU
if: runner.os == 'Linux'
uses: docker/setup-qemu-action@v3
with:
platforms: all
- name: Build wheels
uses: pypa/[email protected]
env:
CIBW_BUILD: 'cp*'
CIBW_ARCHS_LINUX: auto aarch64 ppc64le s390x
- uses: actions/upload-artifact@v4
with:
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
path: ./wheelhouse/*.whl
build_sdist:
name: Build source distribution
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build sdist
run: pipx run build --sdist
- uses: actions/upload-artifact@v4
with:
name: cibw-sdist
path: dist/*.tar.gz
upload_pypi:
name: Upload to PyPI
needs: [build_wheels, build_sdist]
runs-on: ubuntu-latest
if: github.event_name == 'release' && github.event.action == 'published'
permissions:
id-token: write
steps:
- uses: actions/download-artifact@v4
with:
pattern: cibw-*
path: dist
merge-multiple: true
- uses: pypa/gh-action-pypi-publish@release/v1