Update Jenkinsfile

This commit is contained in:
Victor Manea 2020-03-18 22:04:25 -04:00 committed by GitHub
parent 03db5add22
commit dbc1b85d20
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

3
Jenkinsfile vendored
View file

@ -21,10 +21,13 @@ pipeline {
} }
stage('Deploy') { stage('Deploy') {
when{expression{(end.BRANCH_NAME == 'master')}}
{
steps { steps {
sh 'mvn deploy' sh 'mvn deploy'
} }
} }
}
} }
} }