Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

Pass build script variable to deployment when using powershell

ckurmann December 6, 2018

Hi All,

As part of my build I have a powershell script that creates a zip file with a unique name.

I would like to make this name available to deployment task powershell script that is automatically triggered after the build.

All help welcome.

1 answer

1 vote
Steffen Opel _Utoolity_
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
December 8, 2018

You could propagate the name by means of an artifact and the Bamboo Variables task, roughly: 

  1. Dump the name to a properties file via the Bamboo Script task in your build plan, i.e. (from the top of my head) something like:
    • 'echo "zipname = ..." >zip.properties' for PowerShell
  2. Configure an artifact for the zip.properties file
  3. Share this artifact from your build plan to your deployment project
  4. Inject a new variable from the zip.properties file in your deployment project with the Bamboo Variables task
  5. Use the injected variable with the unique zip file name in your deployment task PowerShell script, e.g. $Env:bamboo_your_variable_name

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events