Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
Erotemic committed Sep 24, 2021
1 parent ef88827 commit e30cc85
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions publish.sh
Original file line number Diff line number Diff line change
Expand Up @@ -305,9 +305,9 @@ if [[ "$DO_UPLOAD" == "True" ]]; then
for WHEEL_PATH in "${WHEEL_PATHS[@]}"
do
if [ "$DO_GPG" == "True" ]; then
twine upload --username $TWINE_USERNAME --password=$TWINE_PASSWORD --sign $WHEEL_PATH.asc $WHEEL_PATH || { echo 'failed to twine upload' ; exit 1; }
twine upload --skip-existing --username $TWINE_USERNAME --password=$TWINE_PASSWORD --sign $WHEEL_PATH.asc $WHEEL_PATH || { echo 'failed to twine upload' ; exit 1; }
else
twine upload --username $TWINE_USERNAME --password=$TWINE_PASSWORD $WHEEL_PATH || { echo 'failed to twine upload' ; exit 1; }
twine upload --skip-existing --username $TWINE_USERNAME --password=$TWINE_PASSWORD $WHEEL_PATH || { echo 'failed to twine upload' ; exit 1; }
fi
done
echo """
Expand Down

0 comments on commit e30cc85

Please sign in to comment.