Hi I was wondering if it is possible to create branch specific variable that would be used in build step only?
My bitbucket-pipelines.yml file looks something like this:
pipelines:
branches:
master:
- step:
name: Build
//env variable URL that would hold specific value for master branch
- step:
name: Deploy to Production
//here I'm using variables defined as deployment production variables in settings
development:
-step:
name: Build
//env variable URL that would hold specific value for development branch
-step:
name: Deploy to Staging
//here I'm using variables defined as deployment staging variables in settings
Trouble is that, on both master and development branch, I need environmental variables with same name but different value. Could I maybe add variable to deployment variables and somehow use it in build step or set variable directly inside build step in bitbucket-pipelines.yml file?
Thanks!