ZIP with YAML
Tip
YAML parameters for ZIP
| Name | Type | Description | 
|---|---|---|
| action Required | String | The name of the action. | 
| type Required | String | The type of the action. Should be set to ZIP. | 
| local_path Required | String | The path in the repository. | 
| destination Required | String | The target path. | 
| deployment_excludes | String[] | The paths and/or files that will be left out during the deployment. | 
| deployment_includes | String[] | The exceptions from the ignore patterns set in deployment_excludes. | 
YAML example for ZIP
yamlactions: - action: "Zippy zip" type: "ZIP" trigger_time: "ON_EVERY_EXECUTION" local_path: "/dir_to_zip" destination": "package.zip" deployment_excludes: - "/assets/" - "file.txt" deployment_includes: - "/assets/assets-new/" - "/assets/file.txt"
Last modified on Jul 31, 2025