Skip to content

Commit

Permalink
fix: don't try to deploy for delint build
Browse files Browse the repository at this point in the history
  • Loading branch information
hredestig committed Mar 10, 2017
1 parent 647eca8 commit 1b9aca1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions scripts/deploy.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env bash


echo -e " starting deploy for branch ${TRAVIS_BRANCH} .."

pip install twine
twine upload --skip-existing --username "${PYPI_USERNAME}" --password "${PYPI_PASSWORD}" ${TRAVIS_BUILD_DIR}/wheelhouse/*
if [[ -n "${MB_PYTHON_VERSION}" ]]; then
echo -e " starting deploy for branch ${TRAVIS_BRANCH} .."
pip install twine
twine upload --skip-existing --username "${PYPI_USERNAME}" --password "${PYPI_PASSWORD}" ${TRAVIS_BUILD_DIR}/wheelhouse/*
fi;

0 comments on commit 1b9aca1

Please sign in to comment.