Corrected branch filter for PyPI decployment

This commit is contained in:
Matthias Koefferlein 2022-02-14 18:32:46 +01:00
parent cbd805f8ea
commit 7549d65d8e
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ node("master") {
stage("Publish and test") {
// publish for release tags
if (BRANCH_NAME.startsWith('pypi_v')) {
if (BRANCH_NAME.startsWith('pypi_')) {
sh("twine upload --skip-existing wheelhouse/klayout-*manylinux2014*.whl wheelhouse/*.zip")
}