summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2022-05-26 07:48:32 -0600
committerGitHub <noreply@github.com>2022-05-26 07:48:32 -0600
commitd75e7d8af2314947e0667b29cb304ab0377ee10f (patch)
tree0ce1447484a6003a9259cf8e19be5b19a54ee7c5
parent49f278f7c993985ab47ba1ad85cb9c69e8f2bdcc (diff)
parent889276a8e3af04b263a9371c5146ef6794d00b6d (diff)
downloadnumpy-d75e7d8af2314947e0667b29cb304ab0377ee10f.tar.gz
Merge pull request #21602 from mattip/travis-tag
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"