I am trying to select branches with branch names starting with release.
stage("Upload Artifacts") {
when {
expression {
return env.BRANCH_NAME == "release/*"
}
}
steps {
...
...
}
}
The above code is not picking up my release branch and is simply skipping the stage.
Stage "Upload Artifacts" skipped due to when conditional
You are comparing the branch name with the verbatim string
release/*
. If there is only one branch called"release"
just compare with that. If you wanted to use the*
as a wild card you should useBRANCH_NAME.startsWith('release')
or look into patterns in groovy.