Update Jenkinsfile

This commit is contained in:
JenniferAbouJaoudi 2020-03-13 22:01:36 -04:00 committed by GitHub
parent 5f27888ee7
commit 71563849c9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

4
Jenkinsfile vendored
View file

@ -20,10 +20,12 @@ pipeline {
} }
stage('Deploy') { stage('Deploy') {
when {
branch 'master'
}
steps { steps {
sh 'mvn deploy' sh 'mvn deploy'
} }
}
} }
} }