From 2c45dd4e3795006867451a13790a255008f75980 Mon Sep 17 00:00:00 2001 From: Tommy de boer Date: Thu, 19 May 2022 12:03:40 -0500 Subject: [PATCH] fix(Jenkinsfile): pypi registry url --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 17d2696..333c890 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -93,7 +93,7 @@ pipeline { sh "python setup.py sdist bdist_wheel" - sh "twine upload --repository-url https://pypi.org/ -u ${PYPI_USERNAME} -p ${PYPI_PASSWORD} dist/*" + sh "twine upload --repository-url https://upload.pypi.org/legacy/ -u ${PYPI_USERNAME} -p ${PYPI_PASSWORD} dist/*" sh "git push --tags origin master" hubotSend(message: "Molgenis Commander ${MCMD_VERSION} has been successfully released! :tada: https://pypi.org/project/molgenis-commander/", status:'SUCCESS')