Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Azure DevOps ordering the release stages

How can I order the different deploy environments. Just for display purposes. Currently we have it stand like this:

enter image description here

I want it to look like this:

development--test-acceptation--production

I already edited the release pipeline and moved development up, but when saving and going back it still not in the order I want it. enter image description here

like image 801
user1702369 Avatar asked Oct 22 '19 06:10

user1702369


2 Answers

When you move the stages up/down it will reflect only in the next releases, you can't order the stages of finished releases.

like image 149
Shayki Abramczyk Avatar answered Sep 22 '22 22:09

Shayki Abramczyk


Edit your Release Pipeline. Each of your stages will currently have the Pre-deployment conditions > Trigger set to After release. You need to change the subsequent stages to be After stage and select the previous stage in the sequence. For example if I want to set my UAT Deployment to be after DEV Deployment;

Before; enter image description here After; enter image description here

like image 23
Adam Avatar answered Sep 23 '22 22:09

Adam