From 4f0d523370c42e2401776193a5d189fdb4c76f5c Mon Sep 17 00:00:00 2001 From: jhansi06 Date: Tue, 16 Dec 2025 15:28:53 +0530 Subject: [PATCH] up --- Jenkinsfile | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 56669576b..8d355cfa7 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -43,7 +43,14 @@ pipeline { } } - + stage('Upload Artifacts') { + when { + expression { currentBuild.result == null || currentBuild.result == 'SUCCESS' } + } + steps { + archiveArtifacts artifacts: 'target/*.jar', fingerprint: true + } + } }