Skip to content

Commit 2eac465

Browse files
committed
fix: force architecture on binary build
1 parent 8f828fa commit 2eac465

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/binaries.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ jobs:
1313
fail-fast: false
1414
matrix:
1515
os: [ubuntu-latest, macos-latest, windows-latest]
16+
arch: x64
1617
runs-on: ${{ matrix.os }}
1718
name: Build on ${{ matrix.os }}
1819
steps:
@@ -22,7 +23,6 @@ jobs:
2223
uses: actions/setup-python@v5
2324
with:
2425
python-version: '3.13'
25-
architecture: 'x64'
2626
- name: Setup virtual env
2727
run: |
2828
python -m venv ./venv
@@ -65,6 +65,7 @@ jobs:
6565
fail-fast: false
6666
matrix:
6767
os: [ubuntu-24.04-arm, macos-latest, windows-11-arm]
68+
arch: arm64
6869
runs-on: ${{ matrix.os }}
6970
name: Build on ${{ matrix.os }}
7071
steps:
@@ -74,7 +75,6 @@ jobs:
7475
uses: actions/setup-python@v5
7576
with:
7677
python-version: '3.13'
77-
architecture: 'arm64'
7878
- name: Setup virtual env
7979
run: |
8080
python -m venv ./venv

0 commit comments

Comments
 (0)