Skip to content

PyPi MacOS Release

PyPi MacOS Release #12

Workflow file for this run

name: PyPi MacOS Release
on:
workflow_dispatch:
permissions:
contents: read
jobs:
macos:
runs-on: ${{ matrix.runner[0] }}
strategy:
fail-fast: false
matrix:
runner: [[macos-13, x86_64], [macos-14, aarch64]]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.runner[1] }}
args: --release --out dist
sccache: 'true'
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
name: wheels-macos-${{ matrix.runner[1] }}
path: dist