PyPI deployment: corrected branch filter

This commit is contained in:
Matthias Koefferlein 2022-02-14 18:31:49 +01:00
parent 0132ad08f7
commit 4e511293be
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")
}