Reputation: 3596
I often do the following, through VSTS web UI:
I want for step 2 to trigger automatically upon step 1 completion, so I won't have to babysit it. How can I do it?
Upvotes: 0
Views: 740
Reputation: 59055
Within your release definition:
In the old editor:
In the new editor:
That will create a release. For any environments upon which you want to immediately start deployment, make sure the pipeline is configured so that they start after the release is created.
For the record, this is extremely well-documented.
Upvotes: 4