Skip to content

Commit c41043b

Browse files
committed
add more debugging information to deploy job
1 parent 3a3e4dc commit c41043b

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

.github/workflows/test-and-deploy.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,19 @@ jobs:
156156
path: dist
157157
merge-multiple: true
158158

159+
- name: List and verify artifact integrity
160+
run: |
161+
echo "Contents of dist directory:"
162+
ls -lhR dist
163+
164+
# Verify all tar.gz files can be read
165+
for file in dist/*.tar.gz; do
166+
if [ -f "$file" ]; then
167+
echo "Verifying $file..."
168+
tar -tzf "$file" > /dev/null && echo "✓ $file is valid" || echo "✗ $file is corrupted"
169+
fi
170+
done
171+
159172
- name: Inspect wheel files
160173
run: |
161174
ls -R dist

0 commit comments

Comments
 (0)