diff --git a/Jenkinsfile b/Jenkinsfile index cdc6c73..37e0afb 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -19,20 +19,22 @@ pipeline { junit 'target/surefire-reports/*.xml' } + post { + always { + cleanWs() + } + + success { + echo 'Build success' + } + } + } stage('deploy') { } - post { - always { - cleanWs() - } - success { - echo 'Build success' - } - } } }