We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6882053 commit a8ac605Copy full SHA for a8ac605
1 file changed
.github/workflows/pr-preview.yml
@@ -45,11 +45,17 @@ jobs:
45
echo "exists=false" >> $GITHUB_OUTPUT
46
fi
47
48
+ - name: Clean dist
49
+ run: rm -rf dist
50
+
51
- name: Build package
52
if: steps.version_check.outputs.exists != 'true'
53
run: |
54
hatch build
55
56
+ - name: Inspect built wheel
57
+ run: unzip -p dist/*.whl '*/METADATA' | grep -E '^Name:|^Version:'
58
59
- name: Publish to Test PyPI
60
61
uses: pypa/gh-action-pypi-publish@v1.8.11
0 commit comments