Azure Devops-release pipeline

Viewed 13

Can we create release pipeline in azure devops using yaml? (I know we can add stages in pipelines ,but i want to know if we can create pipeline in pipelines -> release by yaml not classic pipeline.)

1 Answers

you can build and release in the same pipeline, we have a multi stage pipeline, the first stage builds the subsequent stages deploy to the different environments and run automated test enter image description here

Alternatively you can separate it in to different yaml pipelines

Related