I'm new to Bamboo and I need to copy artifacts to a directory outside the working directory. This doesn't seem possible with the Artifact download task. Correct?
If this is true, should I just add a script task after the download to move the files? I want to confirm I'm not overlooking something.
Thanks in advance
Yeap, that's the way I do it.
The artifact downloader is treating / as the working directory. So I am just doing mv in an inline script after artifact gets downloaded.
you can but use the relative path to the bamboo working directory for the plan in the "Destination path"
you can print the bamboo directory path using
if you want to use artifact download task in a remote agent : use ${bamboo.agentWorkingDirectory} to first print out the bamboo working directory for the plan using a simple bamboo task with the above variable
echo ${bamboo.agentWorkingDirectory}
or
check the log file to get idea on what is the working directory
Then use path to where you want to copy the artifact relative to the above value.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.