Browse Source

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
pull/25006/head
Brian Clozel 5 years ago
parent
commit
a378480faf
  1. 8
      ci/pipeline.yml

8
ci/pipeline.yml

@ -187,21 +187,21 @@ jobs: @@ -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:

Loading…
Cancel
Save