Hi there,
In the pipeline config file, bitbucket-pipelines.yml, when adding variables to the pipeline, the standard syntax looks like this:
KEY1: 'keyvalue' # for a string
KEY2: $VARIABLE # for a variable
Is it possible to include a string and variable as the value? In programmatic-speak, can I concatenate the string and variable, like the pseudo-code below?
KEY3: 'some string: $SOME_VARIABLE'
If so, what's the proper syntax?
Thank you!