From 6013b721b829c612d93d907c284c82505208b7c2 Mon Sep 17 00:00:00 2001 From: shenxianpeng Date: Sun, 21 Apr 2024 23:52:03 +0800 Subject: [PATCH] Disable the progress bar when exec twine upload --- twine-upload.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/twine-upload.sh b/twine-upload.sh index 62de5d5..e265633 100755 --- a/twine-upload.sh +++ b/twine-upload.sh @@ -39,6 +39,7 @@ INPUT_PACKAGES_DIR="$(get-normalized-input 'packages-dir')" INPUT_VERIFY_METADATA="$(get-normalized-input 'verify-metadata')" INPUT_SKIP_EXISTING="$(get-normalized-input 'skip-existing')" INPUT_PRINT_HASH="$(get-normalized-input 'print-hash')" +INPUT_DISABLE_PROGRESS_BAR="$(get-normalized-input 'disable-progress-bar')" PASSWORD_DEPRECATION_NUDGE="::error title=Password-based uploads deprecated::\ Starting in 2024, PyPI will require all users to enable Two-Factor \ @@ -133,6 +134,8 @@ if [[ ${INPUT_PRINT_HASH,,} != "false" || ${INPUT_VERBOSE,,} != "false" ]] ; the python /app/print-hash.py ${INPUT_PACKAGES_DIR%%/} fi +TWINE_EXTRA_ARGS="--disable-progress-bar $TWINE_EXTRA_ARGS" + TWINE_USERNAME="$INPUT_USER" \ TWINE_PASSWORD="$INPUT_PASSWORD" \ TWINE_REPOSITORY_URL="$INPUT_REPOSITORY_URL" \