Skip to content

Commit 5fc7310

Browse files
fix: add package metadata for PyPI publication
1 parent 0f13d15 commit 5fc7310

1 file changed

Lines changed: 9 additions & 4 deletions

File tree

.github/workflows/publish.yml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@ jobs:
2525

2626
- name: Build release distributions
2727
run: |
28-
uv build
28+
uv build --verbose
29+
ls -lh dist
30+
unzip -p dist/*.whl | head -20
2931
3032
- name: Upload release distributions
3133
uses: actions/upload-artifact@v4
@@ -45,7 +47,10 @@ jobs:
4547
name: release-dists
4648
path: dist/
4749

50+
- name: Inspect wheel before publish
51+
run: |
52+
ls -lh dist
53+
unzip -p dist/*.whl | head -20
54+
4855
- name: Publish release distributions to PyPI
49-
uses: pypa/gh-action-pypi-publish@v1.8.14
50-
with:
51-
attestations: true
56+
uses: pypa/gh-action-pypi-publish@v1.8.14

0 commit comments

Comments
 (0)