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

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Pass build script variable to deployment when using powershell

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.
Dec 08, 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