Update Jenkinsfile

This commit is contained in:
Claudia Lapalme 2020-03-16 12:11:08 -04:00 committed by GitHub
parent 5c397d9cf2
commit cd37c49d17
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

7
Jenkinsfile vendored
View file

@ -19,10 +19,9 @@ pipeline {
}
}
stage('Deploy') {
when { equals expected: true, actual: doNotSkip } {
steps {
sh './mvnw deploy'
}
when { equals expected: true, actual: doNotSkip }
steps {
sh './mvnw deploy'
}
}
}