From a378480faf28876fc62fc60fbe813abe11710bef Mon Sep 17 00:00:00 2001 From: Brian Clozel Date: Wed, 29 Apr 2020 11:22:32 +0200 Subject: [PATCH] Fix Artifactory properties on published artifacts This commit fixes the file pattern for the published zip artifacts. Prior to this commit, the pattern was wrong and properties were not applied to the published archives, preventing them from being published automatically (javadoc, reference documentation, schemas...). See gh-22490 --- ci/pipeline.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ci/pipeline.yml b/ci/pipeline.yml index 70890e418f0..0c8ec20d30e 100644 --- a/ci/pipeline.yml +++ b/ci/pipeline.yml @@ -187,21 +187,21 @@ jobs: threads: 8 artifact_set: - include: - - "/**/spring-framework-*.zip" + - "/**/spring-*.zip" properties: "zip.name": "spring-framework" "zip.displayname": "Spring Framework" "zip.deployed": "false" - include: - - "/**/spring-framework-*-docs.zip" + - "/**/spring-*-docs.zip" properties: "zip.type": "docs" - include: - - "/**/spring-framework-*-dist.zip" + - "/**/spring-*-dist.zip" properties: "zip.type": "dist" - include: - - "/**/spring-framework-*-schema.zip" + - "/**/spring-*-schema.zip" properties: "zip.type": "schema" get_params: