we are using gitflow to define our repositories. This means that we have a develop and master branch which are responsible for the releases. Our nightly build and production releases are exactly the same with 2 differences:
- Versioning (we have a single step where we change this)
- Branch name
Now I have several actions where I need to use the repository, so I used this:
$Source.Catel_develop$\deployment\FinalBuilder\Continua.BuildSolution.fbp7
However this makes it hard to manage it all. Now I have 2 questions:
- Can we use constants in the variable? For example: $Source.Catel_%branchname%$ ?
- Is there a way to use the generic $source$ without having to specify the branch name? I tried $source$, but that fails.
Thanks!