prepare_deployment_package
Creates optimized deployment packages from a source directory, allowing exclusion of specific patterns. Simplifies deployment preparation for Optimizely DXP environments.
Instructions
Prepare optimized deployment package from source directory
Input Schema
Name | Required | Description | Default |
---|---|---|---|
excludePatterns | No | ||
outputPath | No | ||
sourcePath | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"excludePatterns": {
"items": {
"type": "string"
},
"type": "array"
},
"outputPath": {
"type": "string"
},
"sourcePath": {
"type": "string"
}
},
"required": [
"sourcePath"
],
"type": "object"
}