Skip to content

Commit

Permalink
Add PyPi cross-compilation Github Action
Browse files Browse the repository at this point in the history
  • Loading branch information
benruijl committed Apr 9, 2024
1 parent 7e343d9 commit 11d6e3b
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions .github/workflows/publish_pypi.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: PyPi MacOS Release

on:
workflow_dispatch:

permissions:
contents: read

jobs:
macos:
runs-on: ${{ matrix.runner[0] }}
strategy:
matrix:
runner: [[macos-13, x86_64], [macos-latest, 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

release:
name: Release
runs-on: ubuntu-latest
if: ${{ startsWith(github.ref, 'refs/tags/') }}
needs: [macos]
steps:
- uses: actions/download-artifact@v4
- name: Publish to PyPI
uses: PyO3/maturin-action@v1
env:
MATURIN_PYPI_TOKEN: ${{ secrets.PYPI_API_TOKEN }}
with:
command: upload
args: --non-interactive --skip-existing wheels-*/*

0 comments on commit 11d6e3b

Please sign in to comment.