File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed
Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments