Skip to content

Commit 3bc7b26

Browse files
committed
fix: Debug build
1 parent 0638914 commit 3bc7b26

1 file changed

Lines changed: 7 additions & 2 deletions

File tree

.github/workflows/build.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -185,8 +185,13 @@ jobs:
185185
source venv/bin/activate
186186
echo "Contents of dist directory:"
187187
ls -la dist/
188-
echo "Available wheels:"
189-
pip index versions --no-index --find-links=dist c2pa
188+
echo "Wheel files:"
189+
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
190195
191196
- name: Install wheel
192197
run: |

0 commit comments

Comments
 (0)