Richard
Richard

Reputation: 1106

In Azure DevOps with a Multi Stage Pipeline, how do a manually deploy to an environment?

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.

Upvotes: 0

Views: 470

Answers (1)

Daniel Mann
Daniel Mann

Reputation: 59045

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.

Upvotes: 2

Related Questions