File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 ==="
You can’t perform that action at this time.
0 commit comments