Hi,
I have a build plan (in bamboo yaml) with script task. Script calculates (besides many other things) my custom new version number. Build plan is linked to deployment project (which is automatically triggered after successful build). The question is how can I configure bamboo deployment project to use that "custom new version number" (known inside build plan execution) in release versioning "version" attribute?
In other words: I would like to create every new release in bamboo with the name based on "custom new version number" which is calculated one step earlier (inside build execution).
Plan variables are scoped to broad (every build inside plan). I would like to have something like custom "bamboo build variables" bus it seems that this is generated only by bamboo.
I use bamboo 6.10.3
Thanks a lot for any suggestion how to achieve that.
Darek
Inject Variable Task allows creation of 'result' variables. Those can be used in deployment version naming.
Basically, you need your script to create a .properties file with the variables you want to create and then use Inject task to read it. The variables will then be available as 'bamboo.<namespace>.<name_of_the_var>', where 'namespace' is defined in the task config and name of the var comes from the properties file.
This is how it might look in YAML Specs:
- inject-variables:
file: props
scope: RESULT
namespace: inject
With this config, properties file like
variable=value
is going to give you a variable accessible as 'bamboo.inject.variable'
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks a lot, It seems that this will resolve my issue ;)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.