I'm just reading about the multi-stage pipelines which sound awesome.
As far I understand, the stages run after each other, now suppose I have the following stages
stages:
stage: Deploy to acc
...
stage: Deploy to prd
I don't want to run the production deployment right after the deployment to acc
. First I want to look at acc
and when I approve it should deploy to prd
. Is there a way in the multi-stage pipeline to tell not to automatically run a stage? And run a stage manually for example? Or should I create a new pipeline just for production?