Skip to content

Commit

Permalink
Merge pull request #1528 from deegree/fix/revertPathArchiveArtifacts
Browse files Browse the repository at this point in the history
Enhanced pipeline to publish artifacts on jenkins
  • Loading branch information
copierrj authored Jul 12, 2023
2 parents 741f4d1 + 301f32c commit ae24ed3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ pipeline {
}
stage ('Release') {
when {
allOf{
allOf {
triggeredBy cause: "UserIdCause", detail: "tmc"
expression { return params.PERFORM_RELEASE }
}
Expand All @@ -74,8 +74,8 @@ pipeline {
}
post {
success {
archiveArtifacts artifacts: 'checkout/**/target/deegree-webservices-*.war', fingerprint: true
archiveArtifacts artifacts: 'checkout/**/target/deegree-webservices-handbook*.zip', fingerprint: true
archiveArtifacts artifacts: '**/target/deegree-webservices-*.war', fingerprint: true
archiveArtifacts artifacts: '**/target/deegree-webservices-handbook*.zip', fingerprint: true
}
}
}
Expand Down

0 comments on commit ae24ed3

Please sign in to comment.