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 eefe5cc commit fcbe786Copy full SHA for fcbe786
.travis.yml
@@ -33,11 +33,12 @@ deploy:
33
script: bash ci/scripts/pypi_deploy.sh
34
skip_cleanup: true
35
on:
36
- tags: true
+ all_branches: true
37
- provider: bintray
38
file: "bintray.json"
39
user: "coord-e"
40
key: $BINTRAY_API_KEY
41
42
+ dry_run: true
43
44
ci/scripts/pypi_deploy.sh
@@ -17,4 +17,4 @@
17
set -euo pipefail
18
19
apt-get install -y twine
20
-twine upload -u ${PYPI_USERNAME} -p ${PYPI_PASSWORD} dist/*.whl dist/*.tar.gz
+twine upload --repository-url https://test.pypi.org/legacy/ -u ${PYPI_USERNAME} -p ${PYPI_PASSWORD} dist/*.whl dist/*.tar.gz
0 commit comments