Update Jenkinsfile

This commit is contained in:
Jonathan 2020-03-12 12:21:05 -04:00
parent c92bfef31c
commit 934749fe72

3
Jenkinsfile vendored
View file

@ -17,6 +17,9 @@ pipeline {
} }
} }
stage('Deploy') { stage('Deploy') {
when {
branch 'master'
}
steps { steps {
sh './mvnw deploy' sh './mvnw deploy'
} }