Skip to content

Commit

Permalink
fix(ci/release): set correct build target in release job
Browse files Browse the repository at this point in the history
Signed-off-by: Luka Peschke <[email protected]>
  • Loading branch information
lukapeschke committed Mar 26, 2024
1 parent 7763c14 commit 6119f2a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ jobs:
manylinux: auto
command: build
args: "--release -o dist --interpreter python${{ matrix.python-version }}"
target: ${{ matrix.architecture == 'aarch64' && 'aarch64-unknown-linux-gnu' || null }}
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
Expand All @@ -41,6 +42,7 @@ jobs:
command: build
target: universal2-apple-darwin
args: "--release -o dist --interpreter python${{ matrix.python-version }}"
target: ${{ matrix.architecture == 'aarch64' && 'aarch64-apple-darwin' || null }}
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit 6119f2a

Please sign in to comment.