I would like to build and deploy a Xamarin app in both iOS and Android. Release in stages to 3 environments (Dev-UAT-Production)
When in release it will distribute to appcenter.
I have added a step in the pipeline before the build takes place to change the value of a constant in class that defines what kind of build I am doing EG "Dev" or "Production" etc..
however I cannot find a way in the release pipeline to have some sort of condition
- if(Dev) execute DevStage
- if(UAT) execute UAT Stage
- if(Production) execute Production Stage
If the above is not possible I would have to 3 pipelines one of each stage.
Any ideas -link how to achieve the above?