We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1983173 commit b0b0ea9Copy full SHA for b0b0ea9
.travis.yml
@@ -114,11 +114,15 @@ before_cache: |
114
115
fi
116
set +x
117
-
+
118
+before_deploy:
119
+ - export RELEASE_PKG_FILE=$(ls ${TRAVIS_BUILD_DIR}/wheelhouse/*)
120
+ - echo "deploying $RELEASE_PKG_FILE to GitHub releases"
121
122
deploy:
123
provider: releases
124
api_key: "${GITHUB_OAUTH_TOKEN}"
- file: ${TRAVIS_BUILD_DIR}/wheelhouse/opencv*
125
+ file: ${RELEASE_PKG_FILE}
126
skip_cleanup: true
127
on: master
128
tag: false
0 commit comments