This commit is contained in:
Manpreet Singh 2020-03-15 15:54:25 -04:00 committed by GitHub
parent 7630df7541
commit fae83fbd58
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

8
Jenkinsfile vendored
View file

@ -16,5 +16,13 @@ pipeline {
sh 'mvn package' sh 'mvn package'
} }
} }
stage('Deploy') {
when {
expression { env.BRANCH_NAME == 'master' }
}
steps {
sh 'mvn deploy'
}
}
} }
} }