script_projects_deployments_create
Create a deployment for a Google Apps Script project by specifying the script ID, manifest file name, version number, and description. Simplifies script project management and deployment processes.
Instructions
Creates a deployment of an Apps Script project.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | Yes | A description for the deployment. | |
manifestFileName | Yes | The name of the manifest file. | |
scriptId | Yes | The ID of the script to deploy. | |
versionNumber | Yes | The version number of the script. |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "A description for the deployment.",
"type": "string"
},
"manifestFileName": {
"description": "The name of the manifest file.",
"type": "string"
},
"scriptId": {
"description": "The ID of the script to deploy.",
"type": "string"
},
"versionNumber": {
"description": "The version number of the script.",
"type": "number"
}
},
"required": [
"scriptId",
"manifestFileName",
"versionNumber",
"description"
],
"type": "object"
}