From 634b0b0e32222cc12dc99e0418dfdae13a4b212e Mon Sep 17 00:00:00 2001 From: Guy Lichtman <1395797+glicht@users.noreply.github.com> Date: Fri, 6 Sep 2019 00:03:29 +0300 Subject: [PATCH] deploy.sh fix build on tag 2 --- deploy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy.sh b/deploy.sh index 3960979..21bf748 100755 --- a/deploy.sh +++ b/deploy.sh @@ -14,7 +14,7 @@ if [[ "${CIRCLE_BRANCH}" == "master" ]]; then TWINE_REPOSITORY_URL=https://test.pypi.org/legacy/ TWINE_PASSWORD="${PYPI_TEST_TOKEN}" deploy_to_pypi elif [[ $(echo "${CIRCLE_TAG}" | grep -E "^v[0-9]+\.[0-9]+\.[0-9]+$") ]]; then echo "Deploying to Pypi production site" - TWINE_REPOSITORY_URL=https://test.pypi.org/legacy/ TWINE_PASSWORD="${PYPI_TOKEN}" deploy_to_pypi + TWINE_PASSWORD="${PYPI_TOKEN}" deploy_to_pypi else echo "Skipping Pypi deploy as we are not building a tag or on master" fi