Hi All,
I have a job in which I need conditional task as in:
1. First my execute shell should work
2. And only if the above shell is successful then the job should copy artifacts from another job.
Is there a plugin to achieve the above requirement or is it something else?
Thanks
Uppma
Community moderators have prevented the ability to post new answers.
Why not use one script task to achieve both!
Steps:
1. Add a script task to the Bamboo
2. Use the script task to trigger your shell file
3. Check the status of the execution of the shell file using "$?" if 0 then use the "cp" command to copy the artifacts from the location where they are generated into the current directory.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.