From d3d25b37ee058559c83706ac709f715500d18460 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateusz=20Pie=C5=82a?= Date: Sun, 10 Mar 2024 23:07:43 +0100 Subject: [PATCH] =?UTF-8?q?Fix=20jenkins=20error=20=E2=80=98***/target/*.j?= =?UTF-8?q?ar=E2=80=99=20doesn=E2=80=99t=20match=20anything,?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index b60d130..217635e 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -22,7 +22,7 @@ pipeline { stage('Deploy') { steps { sh 'mvn package' - archiveArtifacts artifacts: '***/target/*.jar', fingerprint: true + archiveArtifacts artifacts: 'target/helloworld*.jar', fingerprint: true } } }