Skip to content

Commit 2492b88

Browse files
committed
fix: upload of wheels
1 parent 5252007 commit 2492b88

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

.github/workflows/build.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -431,6 +431,21 @@ jobs:
431431
find dist -type f -ls
432432
echo "=== Downloaded artifacts contents ==="
433433
ls -R dist/
434+
echo "=== Artifact details ==="
435+
for file in dist/*; do
436+
echo "File: $file"
437+
echo "Size: $(stat -f %z "$file")"
438+
echo "Last modified: $(stat -f %Sm "$file")"
439+
echo "---"
440+
done
441+
echo "=== Platform-specific artifacts ==="
442+
echo "Linux x86_64: $(ls -l dist/wheels-linux-x86_64/* 2>/dev/null || echo 'Not found')"
443+
echo "Linux aarch64: $(ls -l dist/wheels-linux-aarch64/* 2>/dev/null || echo 'Not found')"
444+
echo "macOS x86_64: $(ls -l dist/wheels-macos-x86_64/* 2>/dev/null || echo 'Not found')"
445+
echo "macOS aarch64: $(ls -l dist/wheels-macos-aarch64/* 2>/dev/null || echo 'Not found')"
446+
echo "Windows x64: $(ls -l dist/wheels-windows-x64/* 2>/dev/null || echo 'Not found')"
447+
echo "Windows x86: $(ls -l dist/wheels-windows-x86/* 2>/dev/null || echo 'Not found')"
448+
echo "SDist: $(ls -l dist/wheels-sdist/* 2>/dev/null || echo 'Not found')"
434449
- name: Debug - List final dist directory
435450
run: |
436451
echo "=== Final dist directory contents ==="

0 commit comments

Comments
 (0)