Skip to content

Commit 3ad41e0

Browse files
committed
patch upload.sh
1 parent dc6dd2f commit 3ad41e0

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

upload_package.sh

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
#!/bin/bash
22
set -e
33
rm -rf build dist
4-
uv build
5-
echo "Uploading the package to PyPI via Twine…"
6-
uv add twine
7-
twine upload dist/* --verbose
8-
# echo Pushing git tags…
4+
uv pip install wheel twine
5+
uv build --wheel
6+
uv run twine upload dist/* --verbose
7+
# echo Pushing git tags…

0 commit comments

Comments
 (0)