Fix jenkins error ‘***/target/*.jar’ doesn’t match anything,

This commit is contained in:
Mateusz Pieła 2024-03-10 23:07:43 +01:00
parent b33f004b19
commit d3d25b37ee

2
Jenkinsfile vendored
View file

@ -22,7 +22,7 @@ pipeline {
stage('Deploy') {
steps {
sh 'mvn package'
archiveArtifacts artifacts: '***/target/*.jar', fingerprint: true
archiveArtifacts artifacts: 'target/helloworld*.jar', fingerprint: true
}
}
}