Skip to content

Commit 86e340d

Browse files
authored
Fix build for macos-x64 (#168)
* Fixed configuration error that caused x64 wheels not to be build and uploaded to PyPI
1 parent 5875f58 commit 86e340d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/bindings.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,8 @@ jobs:
7474
with:
7575
submodules: recursive
7676
- uses: ilammy/msvc-dev-cmd@v1
77-
- if: ${{ matrix.config.arch }} == 'arm64'
77+
- name: Set Architecture to arm64 if necessary
78+
if: ${{ matrix.config.arch == 'arm64' }}
7879
run: echo "CIBW_ARCHS_MACOS=arm64" >> $GITHUB_ENV
7980
- name: Build wheels
8081
uses: pypa/[email protected]

0 commit comments

Comments
 (0)