0

I currently have a separate Pipeline for a Build and Deployments.

The SysTest deployment is triggered automatically.

I manually deploy to QA, which I like (See below).

enter image description here

I am trying to upgrade this process to a Multi Stage Pipeline.

However, I can't find a way to just deploy to QA manually. The best of found is to Review and Approve the deployment to QA. (See below) Which is not really what I want.

Is there a way to just manually deploy to an environment with in a Multi Stage Pipeline?

enter image description here

Any help would be appreciated.

Richard
  • 1,054
  • 1
  • 19
  • 36

1 Answers1

2

No, not at present. It's one of the areas that's lacking feature parity at the moment; you can't skip stages or have a stage be manual-only.

Daniel Mann
  • 57,011
  • 13
  • 100
  • 120
  • Thanks for confirming. I spent sometime searching for a resolution to this problem and came to the same conclusion. So, this afternoon I set up a Multi Stage Pipeline for the Build and Systest. Then updated my Release Pipeline for QA. Not a perfect solution but it seems like a step in the right direction. Thanks again. – Richard Aug 08 '20 at 20:45