Skip to content

Build

Build #94

Workflow file for this run

name: Build
on:
push:
branches:
- master
workflow_dispatch:
jobs:
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
build_wheels:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest] # , windows-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- name: Build wheels
uses: pypa/[email protected]
- uses: actions/upload-artifact@v4
with:
name: cibw-wheels-${{ matrix.os }}
path: ./wheelhouse/*.whl
upload_pypi:
needs:
- build_wheels_linux

Check failure on line 44 in .github/workflows/build_wheels.yml

View workflow run for this annotation

GitHub Actions / Build

Invalid workflow file

The workflow is not valid. .github/workflows/build_wheels.yml (Line: 44, Col: 9): Job 'upload_pypi' depends on unknown job 'build_wheels_linux'.
- build_sdist
# Comment the next two for testing
# - build_wheels_windows
# - build_wheels_macos
runs-on: ubuntu-latest
environment: release
permissions:
id-token: write
# Comment this line for testing
# if: github.event_name == 'release' && github.event.action == 'published'
steps:
- uses: actions/download-artifact@v4
with:
# unpacks all CIBW artifacts into dist/
pattern: cibw-*
path: dist
merge-multiple: true
- uses: pypa/gh-action-pypi-publish@release/v1
# Uncomment these lines for testing
with:
repository-url: https://test.pypi.org/legacy/