Build and deploy wheels #51
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: Build and deploy wheels | ||
on: | ||
push: | ||
tags: | ||
- v* | ||
workflow_dispatch: | ||
inputs: | ||
os_choice: | ||
description: 'Choose the OS to build for' | ||
required: true | ||
default: 'all' | ||
type: choice | ||
options: | ||
- all | ||
- ubuntu-latest | ||
- windows-latest | ||
- macos-latest | ||
jobs: | ||
build_wheels: | ||
name: Build wheels on ${{ matrix.os }} | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [macos-latest, windows-latest, ubuntu-latest] | ||
if: ${{ github.event_name == 'push' || github.event.inputs.os_choice == 'all' || github.event.inputs.os_choice == matrix.os }} | ||
Check failure on line 30 in .github/workflows/wheels-deploy.yml GitHub Actions / Build and deploy wheelsInvalid workflow file
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: 3.11 | ||
- name: Build wheels | ||
uses: pypa/[email protected] | ||
with: | ||
output-dir: ./wheelhouse | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: wheels-${{ matrix.os }} | ||
path: ./wheelhouse/*.whl | ||
overwrite: true | ||
build_sdist: | ||
name: Build source distribution | ||
runs-on: ubuntu-latest | ||
if: ${{ github.event_name == 'push' || github.event.inputs.os_choice == 'all' || github.event.inputs.os_choice == 'ubuntu-latest' }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Build sdist | ||
run: pipx run build --sdist | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: sdist | ||
path: dist/*.tar.gz | ||
overwrite: true | ||
upload_pypi: | ||
needs: [build_wheels, build_sdist] | ||
runs-on: ubuntu-latest | ||
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') | ||
steps: | ||
- uses: actions/download-artifact@v4 | ||
with: | ||
name: wheels-ubuntu-latest | ||
path: dist/ | ||
- uses: actions/download-artifact@v4 | ||
with: | ||
name: wheels-macos-latest | ||
path: dist/ | ||
- uses: actions/download-artifact@v4 | ||
with: | ||
name: wheels-windows-latest | ||
path: dist/ | ||
- uses: actions/download-artifact@v4 | ||
with: | ||
name: sdist | ||
path: dist/ | ||
- name: List artifacts (debug) | ||
run: ls dist | ||
- uses: pypa/[email protected] | ||
with: | ||
user: __token__ | ||
password: ${{ secrets.PYPI_PASSWORD }} |