Skip to content

fix: set -u when git push (#100) #283

fix: set -u when git push (#100)

fix: set -u when git push (#100) #283

Workflow file for this run

name: Build and upload to PyPI
on:
push:
branches:
- master
- current
tags:
- v*
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref || github.run_id }}
cancel-in-progress: true
jobs:
build_wheels:
name: Build wheels for cp${{ matrix.python }}-${{ matrix.platform_id }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
# linux-64
- os: ubuntu-latest
python: 311
platform_id: manylinux_x86_64
- os: ubuntu-latest
python: 311
platform_id: musllinux_x86_64
# macos-x86-64
- os: macos-13
python: 311
platform_id: macosx_x86_64
# macos-x86-64
- os: macos-14
python: 311
platform_id: macosx_arm64
# windows-64
- os: windows-latest
python: 311
platform_id: win_amd64
# linux-aarch64
- os: ubuntu-24.04-arm
python: 311
platform_id: manylinux_aarch64
# windows-arm64
- os: windows-latest
python: 311
platform_id: win_arm64
steps:
- uses: actions/checkout@v4
- uses: ilammy/setup-nasm@v1
if: matrix.platform_id == 'win_amd64' || matrix.platform_id == 'win_arm64'
- name: Build wheels
uses: pypa/cibuildwheel@v2.22
env:
CIBW_BUILD_VERBOSITY: 1
CIBW_ARCHS: all
CIBW_BUILD: cp${{ matrix.python }}-${{ matrix.platform_id }}
- uses: actions/upload-artifact@v4
with:
name: cibw-wheels-cp${{ matrix.python }}-${{ matrix.platform_id }}-${{ strategy.job-index }}
path: ./wheelhouse/*.whl
build_sdist:
name: Build source distribution
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
name: Install Python
with:
python-version: '3.11'
- run: python -m pip install build
- name: Build sdist
run: pipx run build --sdist
- name: Build sdist for cmd
run: cd cmd && pipx run build
- uses: actions/upload-artifact@v4
with:
name: cibw-sdist
path: dist/*.tar.gz
- uses: actions/upload-artifact@v4
with:
name: cibw-cmd
path: cmd/dist/*
upload_pypi:
needs: [build_wheels, build_sdist]
runs-on: ubuntu-latest
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/v')
permissions:
# IMPORTANT: this permission is mandatory for trusted publishing
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
pass:
name: Pass testing build wheels
needs: [build_wheels, build_sdist]
runs-on: ubuntu-latest
if: always()
steps:
- name: Decide whether the needed jobs succeeded or failed
uses: re-actors/alls-green@release/v1
with:
jobs: ${{ toJSON(needs) }}