From 6b752723b1954e6a3fc09e1af2c00e501288f44a Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Thu, 6 Jan 2022 09:38:13 +0100 Subject: [PATCH] Fixed PyPI build scripts --- Jenkinsfile-pypi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile-pypi b/Jenkinsfile-pypi index 72d16f7da..8bc51a963 100644 --- a/Jenkinsfile-pypi +++ b/Jenkinsfile-pypi @@ -33,7 +33,7 @@ node("master") { stage("Publish and test") { // publish for release tags - if (BRANCH_NAME.startsWith('v')) { + if (BRANCH_NAME.startsWith('pypi_v')) { sh("twine upload --skip-existing wheelhouse/klayout-*manylinux2014*.whl wheelhouse/*.zip") }