Skip to content

Commit a8ac605

Browse files
committed
Add debug for build process
1 parent 6882053 commit a8ac605

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/pr-preview.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,17 @@ jobs:
4545
echo "exists=false" >> $GITHUB_OUTPUT
4646
fi
4747
48+
- name: Clean dist
49+
run: rm -rf dist
50+
4851
- name: Build package
4952
if: steps.version_check.outputs.exists != 'true'
5053
run: |
5154
hatch build
5255
56+
- name: Inspect built wheel
57+
run: unzip -p dist/*.whl '*/METADATA' | grep -E '^Name:|^Version:'
58+
5359
- name: Publish to Test PyPI
5460
if: steps.version_check.outputs.exists != 'true'
5561
uses: pypa/[email protected]

0 commit comments

Comments
 (0)