From eba5beec812a089756bbcfb6a4b2971ca4b7790d Mon Sep 17 00:00:00 2001 From: Boris Bolliet Date: Mon, 30 Sep 2024 18:00:31 +0100 Subject: [PATCH] Update build_wheels.yml --- .github/workflows/build_wheels.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml index 1b0cc5b7..41c15975 100644 --- a/.github/workflows/build_wheels.yml +++ b/.github/workflows/build_wheels.yml @@ -352,14 +352,14 @@ jobs: if [ "$(ls -A wheelhouse)" ]; then echo "Uploading wheels..." - twine upload wheelhouse/* + twine upload wheelhouse/* || echo "WARNING: Failed to upload wheels, probably because they already exist. Continuing the job..." else echo "No wheels to upload." fi if [ -d "dist" ] && [ "$(ls -A dist)" ]; then echo "Uploading source distribution to PyPI..." - twine upload dist/*.tar.gz || echo "Source distribution upload failed, probably cause it's already there continuing..." + twine upload dist/*.tar.gz || || echo "Source distribution upload failed, probably cause it's already there continuing..." else echo "No source distribution to upload." fi