You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by to...@apache.org on 2023/08/10 08:11:55 UTC

[libcloud] 01/02: Add twine check step to the dist script.

This is an automated email from the ASF dual-hosted git repository.

tomaz pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/libcloud.git

commit f5cc895763e3032592098df7052b4f758de63bfa
Author: Tomaz Muraus <to...@tomaz.me>
AuthorDate: Thu Aug 10 10:07:14 2023 +0200

    Add twine check step to the dist script.
---
 dist/deploy.sh | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dist/deploy.sh b/dist/deploy.sh
index 23dc4bbb4..43c3caf44 100755
--- a/dist/deploy.sh
+++ b/dist/deploy.sh
@@ -30,6 +30,7 @@ echo "Uploading packages"
 # shellcheck disable=SC2086
 ls ./*$VERSION*.tar.gz ./*$VERSION*.whl ./*$VERSION*.tar.gz.asc
 # shellcheck disable=SC2086
+twine check ./*$VERSION*.tar.gz ./*$VERSION*.whl
 twine upload ./*$VERSION*.tar.gz ./*$VERSION*.whl ./*$VERSION*.tar.gz.asc
 
 popd