Hello,
I'm using bitbucket pipelines and I need to use the value of a variable but inside of ''.
For example, I want the following: 'environment=dev' and dev is the environmentValue variable.
If I write 'environment=$environmentValue' the result is 'environment=$environmentValue' and not 'environmnet=dev'.
However, if I write echo $environmentValue the result is dev, so I think the error is '' but I need write it with the ''.
Thank you!!