We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0638914 commit 3bc7b26Copy full SHA for 3bc7b26
1 file changed
.github/workflows/build.yml
@@ -185,8 +185,13 @@ jobs:
185
source venv/bin/activate
186
echo "Contents of dist directory:"
187
ls -la dist/
188
- echo "Available wheels:"
189
- pip index versions --no-index --find-links=dist c2pa
+ echo "Wheel files:"
+ find dist -name "*.whl" -type f
190
+ echo "Wheel file details:"
191
+ for wheel in dist/*.whl; do
192
+ echo "=== $wheel ==="
193
+ unzip -l "$wheel" | grep -E "c2pa|\.so|\.dll|\.dylib"
194
+ done
195
196
- name: Install wheel
197
run: |
0 commit comments