Skip to content

Commit

Permalink
new universal2 handling
Browse files Browse the repository at this point in the history
  • Loading branch information
clbarnes committed Jan 23, 2024
1 parent 2a47e53 commit 1d0b4dd
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/nblast-py.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,18 @@ jobs:
with:
python-version: "3.10"
- uses: PyO3/maturin-action@v1
if: ${{ startsWith(matrix.os, 'macos') }}
with:
manylinux: auto
command: publish
args: -u __token__ -p ${{ secrets.MATURIN_PASSWORD }} --skip-existing -- --universal2
name: Deploy distribution
args: -u __token__ -p ${{ secrets.MATURIN_PASSWORD }} --skip-existing --target universal2-apple-darwin
working-directory: nblast-py
name: Deploy distribution (macos)
- uses: PyO3/maturin-action@v1
if: ${{ !startsWith(matrix.os, 'macos') }}
with:
manylinux: auto
command: publish
args: -u __token__ -p ${{ secrets.MATURIN_PASSWORD }} --skip-existing
working-directory: nblast-py
name: Deploy distribution (other)

0 comments on commit 1d0b4dd

Please sign in to comment.