summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormattip <matti.picus@gmail.com>2022-05-26 07:02:07 +0300
committermattip <matti.picus@gmail.com>2022-05-26 07:02:07 +0300
commit889276a8e3af04b263a9371c5146ef6794d00b6d (patch)
tree0ce1447484a6003a9259cf8e19be5b19a54ee7c5
parent49f278f7c993985ab47ba1ad85cb9c69e8f2bdcc (diff)
downloadnumpy-889276a8e3af04b263a9371c5146ef6794d00b6d.tar.gz
BUILD: fix tag name for travis: it is v1.23.0rc1
-rw-r--r--tools/wheels/upload_wheels.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/wheels/upload_wheels.sh b/tools/wheels/upload_wheels.sh
index 4bb1a8c51..46532a5f0 100644
--- a/tools/wheels/upload_wheels.sh
+++ b/tools/wheels/upload_wheels.sh
@@ -2,7 +2,7 @@ set_travis_vars() {
# Set env vars
echo "TRAVIS_EVENT_TYPE is $TRAVIS_EVENT_TYPE"
echo "TRAVIS_TAG is $TRAVIS_TAG"
- if [[ "$TRAVIS_EVENT_TYPE" == "push" && "$TRAVIS_TAG" == refs/tags/v* ]]; then
+ if [[ "$TRAVIS_EVENT_TYPE" == "push" && "$TRAVIS_TAG" == v* ]]; then
IS_PUSH="true"
else
IS_PUSH="false"