forked from auracaster/pyalsaaudio
56 lines
1.4 KiB
YAML
56 lines
1.4 KiB
YAML
# Adapted from: https://github.com/pypa/cibuildwheel/blob/main/examples/github-deploy.yml
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
tags: "*"
|
|
|
|
jobs:
|
|
build_wheels:
|
|
name: Build wheels on ${{ matrix.os }}
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
matrix:
|
|
os:
|
|
- ubuntu-24.04
|
|
- ubuntu-24.04-arm
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
- name: Install uv
|
|
uses: astral-sh/setup-uv@v6
|
|
- name: Build wheels
|
|
run: make build_wheels
|
|
- 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@v5
|
|
- name: Install uv
|
|
uses: astral-sh/setup-uv@v6
|
|
- name: Build sdist
|
|
run: make build_sdist
|
|
- uses: actions/upload-artifact@v4
|
|
with:
|
|
name: cibw-sdist
|
|
path: dist/*.tar.gz
|
|
|
|
upload_pypi:
|
|
needs: [build_wheels, build_sdist]
|
|
runs-on: ubuntu-latest
|
|
environment: pypi
|
|
permissions:
|
|
id-token: write
|
|
steps:
|
|
- uses: actions/download-artifact@v5
|
|
with:
|
|
# unpacks all CIBW artifacts into dist/
|
|
pattern: cibw-*
|
|
path: dist
|
|
merge-multiple: true
|
|
- uses: pypa/gh-action-pypi-publish@release/v1
|