diff --git a/Jenkinsfile b/Jenkinsfile index 43b882111..bca0eb6c9 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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' } } }