From 11d6e3bbe34e527913aaae8f66ba5758c63ce707 Mon Sep 17 00:00:00 2001 From: Ben Ruijl Date: Tue, 9 Apr 2024 12:21:38 +0200 Subject: [PATCH] Add PyPi cross-compilation Github Action --- .github/workflows/publish_pypi.yml | 45 ++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 .github/workflows/publish_pypi.yml diff --git a/.github/workflows/publish_pypi.yml b/.github/workflows/publish_pypi.yml new file mode 100644 index 00000000..ee92d7f0 --- /dev/null +++ b/.github/workflows/publish_pypi.yml @@ -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-*/*