/
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
This article explains how to add Bamboo CLI task in a Bamboo job with Bamboo Command Line Interface (CLI).
Instructions
Use the addTask action to create Bamboo CLI action tasks in the Bamboo job. Refer to the following sample command:
--action addTask --plan DEMO-PLAN --job JOB1 --description "Build Report" --taskKey org.swift.bamboo.acli:bamboo --field scriptLocation=INLINE --field scriptBody="--action getBuildReportList --project DEMO --server "Bamboo_Server" --user "Bamboo_Username" --password "Bamboo_Password" "
In the above action:
- --plan value refers to the Bamboo plan key.
- --job value refers to the Bamboo job key.
- --taskKey value refers to the Bamboo task type.
- --description value refers to the task description.
- --field parameter refers to a specific Bamboo CLI task configuration.
- Additionally, --disable parameter can be used to disable the task, and --final parameter can be used to script the task as a final task.
- Make sure that the Run CLI Actions in Bamboo app is installed in Bamboo.
- It is recommended to test it in a non-production environment or run the action with the --simulate parameter to verify the behavior before deploying.
Related content
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 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
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)
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 labels to current build with Bamboo task using Run CLI Actions in Bamboo
How to add labels to current build with Bamboo task using Run CLI Actions in Bamboo
More like this
How to add environment task to a deployment project using Bamboo CLI
How to add environment task to a deployment project using Bamboo CLI
More like this