/
How to add inline script task in Bamboo job using Bamboo Command Line Interface (CLI)
How to add inline script task in Bamboo job using Bamboo Command Line Interface (CLI)
This article explains how to add inline script task in a Bamboo job using Bamboo Command Line Interface (CLI).
Instructions
Use the addTask action to create inline script tasks in the Bamboo job. Refer to the sample command below:
--action addTask --plan DEMO-NEW --job "JOB1" --taskKey SCRIPT --description "Scripted Task " --field scriptLocation=INLINE --field scriptBody="exit -1"
In the above action:
- --plan value refers to a Bamboo plan key.
- --job value refers to the Bamboo job key.
- --taskKey value refers to Bamboo task type.
- --description value refers to task description.
- --field parameter refers to specific script configuation.
- Additionally, --disable parameter can be used to disable the task and --final parameter to script task as a final task.
It is recommended to test this scenario in a non-production environment or run the action with --simulate parameter to verify the behavior before deploying.
Related content
How to add Bamboo CLI task in a Bamboo job with Run CLI Actions in Bamboo
How to add Bamboo CLI task in a Bamboo job with Run CLI Actions in Bamboo
More like this
How to add Confluence CLI task in Bamboo job using Bamboo Command Line Interface (CLI)
How to add Confluence CLI task in Bamboo job using Bamboo Command Line Interface (CLI)
More like this
How to add Jira CLI task in a Bamboo job with Bamboo CLI
How to add Jira CLI task in a Bamboo job with Bamboo CLI
More like this
How to add a job to a stage of a plan using Bamboo Command Line Interface (CLI)
How to add a job to a stage of a plan using Bamboo Command Line Interface (CLI)
More like this
How to add source code Checkout task in Bamboo job with Bamboo CLI
How to add source code Checkout task in Bamboo job with Bamboo CLI
More like this
How to add Bitbucket CLI task in a Bamboo job with Run CLI Actions in Bamboo
How to add Bitbucket CLI task in a Bamboo job with Run CLI Actions in Bamboo
More like this