Skip to content

Commit

Permalink
Fix Artifactory configuration for docs deployment
Browse files Browse the repository at this point in the history
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
  • Loading branch information
bclozel committed Nov 2, 2022
1 parent aa2d7db commit 676f163
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ci/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 676f163

Please sign in to comment.