Bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows #85
Workflow file for this run
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 & Publish wheels | |
on: [push, pull_request] | |
jobs: | |
build_sdist: | |
name: Build source distribution | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build sdist | |
run: pipx run build --sdist | |
- uses: actions/upload-artifact@v3 | |
with: | |
path: dist/*.tar.gz | |
build_wheels: | |
strategy: | |
matrix: | |
os: [ubuntu-20.04, windows-2019, macOS-11] | |
cp: ["cp37", "cp38", "cp39", "cp310", "cp311", "cp312"] | |
name: Build ${{ matrix.cp }} wheels on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up QEMU | |
if: runner.os == 'Linux' | |
uses: docker/setup-qemu-action@v2 | |
with: | |
platforms: all | |
- name: Build wheels | |
uses: joerick/[email protected] | |
env: | |
CIBW_ARCHS_LINUX: auto aarch64 | |
CIBW_ARCHS_MACOS: x86_64 arm64 universal2 | |
CIBW_BUILD: | | |
${{ matrix.cp }}-manylinux_x86_64 | |
${{ matrix.cp }}-manylinux_i686 | |
${{ matrix.cp }}-manylinux_aarch64 | |
${{ matrix.cp }}-win_amd64 | |
${{ matrix.cp }}-win32 | |
${{ matrix.cp }}-macosx_x86_64 | |
${{ matrix.cp }}-macosx_arm64 | |
${{ matrix.cp }}-macosx_universal2 | |
CIBW_TEST_REQUIRES: pytest pillow | |
CIBW_TEST_COMMAND: pytest -v -s {package}/tests | |
CIBW_TEST_SKIP: "*-macosx_arm64 *-macosx_universal2:arm64 *-win32 *-manylinux_i686" | |
- uses: actions/upload-artifact@v3 | |
with: | |
path: ./wheelhouse/*.whl | |
upload_pypi: | |
name: Publish to PyPI | |
needs: [build_wheels, build_sdist] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
with: | |
name: artifact | |
path: dist | |
- uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
user: __token__ | |
password: ${{ secrets.PYPI_TOKEN }} | |
skip_existing: true |