Skip to content

Commit 97a48e3

Browse files
committed
fix: Universal pipeline
1 parent 8f8fec1 commit 97a48e3

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/build-wheel.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,9 @@ jobs:
8282
find dist -name "*.whl" | wc -l
8383
echo "Wheel filenames:"
8484
find dist -name "*.whl" -exec basename {} \;
85-
echo "Verifying wheelsusing twine check"
85+
86+
# Verify wheel structure
87+
echo "Verifying wheels using twine check"
8688
twine check dist/*
8789
8890
- name: Build Windows wheel (x64)
@@ -115,6 +117,9 @@ jobs:
115117
# Build wheel
116118
python setup.py bdist_wheel --plat-name win_amd64
117119
120+
# Verify wheel structure
121+
twine check dist/*
122+
118123
- name: Build macOS wheel (Universal)
119124
if: runner.os == 'macOS'
120125
run: |
@@ -142,7 +147,8 @@ jobs:
142147
done
143148
cd ..
144149
145-
echo "Verifying wheelsusing twine check"
150+
# Verify wheel structure
151+
echo "Verifying wheels using twine check"
146152
twine check dist/*
147153
148154
- name: Log wheel filename

0 commit comments

Comments
 (0)