diff options
author | Matti Picus <matti.picus@gmail.com> | 2022-02-18 12:44:31 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-18 12:44:31 +0200 |
commit | b1e80a1aef9bfa821d28f185ba8a94f970b0f21e (patch) | |
tree | 14db203e326e94cff9f10afa54b6403845a96f0c | |
parent | 8653f044866095c2176fed1d5b44d3fbcd6b93f7 (diff) | |
parent | a67c5e7fc3860d10ae12ed7a3f2bf0ce9e276cd0 (diff) | |
download | numpy-b1e80a1aef9bfa821d28f185ba8a94f970b0f21e.tar.gz |
Merge pull request #21089 from mattip/travis-api
BUILD: if travis build is triggered manually, then upload wheels
-rw-r--r-- | tools/wheels/upload_wheels.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/wheels/upload_wheels.sh b/tools/wheels/upload_wheels.sh index fdd6e7d68..130062d5e 100644 --- a/tools/wheels/upload_wheels.sh +++ b/tools/wheels/upload_wheels.sh @@ -9,6 +9,9 @@ set_travis_vars() { fi if [[ "$TRAVIS_EVENT_TYPE" == "cron" ]]; then IS_SCHEDULE_DISPATCH="true" + elif [[ "$TRAVIS_EVENT_TYPE" == "api" ]]; then + # Manual CI run, so upload + IS_SCHEDULE_DISPATCH="true" else IS_SCHEDULE_DISPATCH="false" fi |