Browse Source

Fix Artifactory configuration for docs deployment

This commit aligns the Artifactory configuration with the changes
applied in gh-29417.
In order to be deployed, docs artifacts must have specific properties
attached to them.

See gh-29417
pull/29167/head
Brian Clozel 3 years ago
parent
commit
676f163546
  1. 8
      ci/pipeline.yml

8
ci/pipeline.yml

@ -218,21 +218,21 @@ jobs: @@ -218,21 +218,21 @@ jobs:
threads: 8
artifact_set:
- include:
- "/**/spring-*.zip"
- "/**/framework-docs-*.zip"
properties:
"zip.name": "spring-framework"
"zip.displayname": "Spring Framework"
"zip.deployed": "false"
- include:
- "/**/spring-*-docs.zip"
- "/**/framework-docs-*-docs.zip"
properties:
"zip.type": "docs"
- include:
- "/**/spring-*-dist.zip"
- "/**/framework-docs-*-dist.zip"
properties:
"zip.type": "dist"
- include:
- "/**/spring-*-schema.zip"
- "/**/framework-docs-*-schema.zip"
properties:
"zip.type": "schema"
get_params:

Loading…
Cancel
Save