setup-static-content-deploy
Deploy static content and assets for Magento 2 stores to specific languages and themes using parallel processing for faster deployment cycles.
Instructions
Deploy Magento 2 static content and assets
Input Schema
Name | Required | Description | Default |
---|---|---|---|
force | No | Force deployment even if files exist | |
jobs | No | Number of parallel jobs | |
languages | No | Languages to deploy (e.g., ['en_US', 'de_DE']) | |
themes | No | Themes to deploy |
Input Schema (JSON Schema)
{
"properties": {
"force": {
"description": "Force deployment even if files exist",
"type": "boolean"
},
"jobs": {
"description": "Number of parallel jobs",
"type": "number"
},
"languages": {
"description": "Languages to deploy (e.g., ['en_US', 'de_DE'])",
"items": {
"type": "string"
},
"type": "array"
},
"themes": {
"description": "Themes to deploy",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
}