Skip to content

Commit

Permalink
[skyapi] refs skycoin#131 deploy to testPyPi
Browse files Browse the repository at this point in the history
  • Loading branch information
e1Ru1o committed Jul 8, 2019
1 parent efb4add commit 8d0a618
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .travis/deploy-with-twine.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,10 @@ make sdist
make bdist_wheel
if [ $TRAVIS_OS_NAME == "linux" && $TOXENV == "py37" ]; then make bdist_manylinux_amd64 ; fi

echo "Upload to testPyPi"
twine upload -u pyskycoin -p "prerelease_0.X" --verbose --repository-url https://test.pypi.org/legacy/ dist/*
twine upload -u pyskycoin -p "prerelease_0.X" --verbose --repository-url https://test.pypi.org/legacy/ lib/skyapi/dist/*
#Upload to PyPi
echo "Upload to PyPi"
twine upload -u $PYPITEST_USER -p $PYPITEST_PWD --repository-url https://upload.pypi.org/legacy/ dist/*
twine upload -u $PYPITEST_USER -p $PYPITEST_PWD --repository-url https://upload.pypi.org/legacy/ lib/skyapi/dist/*
# echo "Upload to PyPi"
# twine upload -u $PYPITEST_USER -p $PYPITEST_PWD --repository-url https://upload.pypi.org/legacy/ dist/*
# twine upload -u $PYPITEST_USER -p $PYPITEST_PWD --repository-url https://upload.pypi.org/legacy/ lib/skyapi/dist/*

0 comments on commit 8d0a618

Please sign in to comment.