deploy-site
Deploy your Laravel Forge sites directly by triggering a deployment process, ensuring your application updates are live without manual intervention.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
deploy | Yes | Deploy the site. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"deploy": {
"description": "Deploy the site.",
"type": "boolean"
}
},
"required": [
"deploy"
],
"type": "object"
}