deploy master, 3.8.x and 3.9.x

This commit is contained in:
Hervé Boutemy 2022-05-31 09:15:06 +02:00
parent 3d45167203
commit 7bd5fb38b3
1 changed files with 1 additions and 1 deletions

2
Jenkinsfile vendored
View File

@ -41,7 +41,7 @@ node(jenkinsEnv.nodeSelection(osNode)) {
def MAVEN_GOAL='verify' def MAVEN_GOAL='verify'
stage('Configure deploy') { stage('Configure deploy') {
if (env.BRANCH_NAME == 'master'){ if (env.BRANCH_NAME in ['master', 'maven-3.8.x', 'maven-3.9.x']){
MAVEN_GOAL='deploy' MAVEN_GOAL='deploy'
} }
} }