From 1f6b17b1d3cc01455e4ab63236da8fbaf54b305c Mon Sep 17 00:00:00 2001 From: luxic Date: Tue, 14 Oct 2025 15:11:33 +0700 Subject: [PATCH] aaa --- Jenkinsfile | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) 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' - } - } } }