File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed
Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -46,10 +46,19 @@ jobs:
4646 dev_version="${major}.${minor}.${new_patch}.dev$(date +%s)"
4747 sed -i "s/^version = .*/version = \"$dev_version\"/" pyproject.toml
4848 echo "Bumped version from $current_version to $dev_version"
49+ echo "Current pyproject.toml version line:"
50+ grep '^version =' pyproject.toml
4951
5052 - name : Build package
5153 run : |
5254 uv build
55+ echo "Built packages:"
56+ ls -lh dist/
57+ echo "Checking wheel contents:"
58+ python -m zipfile -l dist/*.whl
59+ echo "Extracting and checking METADATA file:"
60+ python -m zipfile -e dist/*.whl /tmp/wheel_check
61+ find /tmp/wheel_check -name METADATA -exec cat {} \; | head -30
5362
5463 - name : Publish package on PyPI
5564 if : steps.check-version.outputs.tag
You can’t perform that action at this time.
0 commit comments