How to Create Release Pipelines in Azure Devops in 7 Simple Steps

Written by krishnagk | Published 2021/02/28
Tech Story Tags: azure-devops | cicd | continuous-deployment | devops | devops-tools | azure | azure-functions | microsoft-azure

TLDRvia the TL;DR App

This article will explain how to create release pipelines in Azure Devops in seven simple steps.
Pre-requisites:
We need to have a service connection ready to bind the azure web app with the devops pipelines. So, we must proceed by creating a new service connection as shown below:
In the project Settings, search for Service connections.
Click on Service connections as shown in the figure below. Select Azure Resource Manager as connection type.
For the selected Azure Resource Manager, select Publish Profile as the Authentication method.
The final step of creating a new Azure service connection is completed by filling in the Subscription, Resource group(where the web app is deployed), the web app name, Service connection name.
Now, the service connection is created.

How to Create a New Release Pipeline

1. Create a new pipeline as shown in the figure below by clicking ‘new release pipeline’.
2. Create a new task by searching for ‘Azure Web App’ under the Deploy section.
3. Click on Azure Web App as shown in the figure below.
4. Fill in the Display name, Azure subscription,App type, App name
5. We also need to add an artifact produced earlier from the build pipeline as shown below.
6. Once, the artifact is uploaded, we need to check the continuous integration checkbox for us to run the pipeline whenever we have a new build pipeline running. It is shown below.
Click on add to specify the branch to build. Here, we have ‘Development’ as the branch.
7. Final step is to click on the Create Release button to trigger the continuous deployment of the release pipeline.
We can see the release pipeline running as shown below.
This completes our tutorial for building the release pipeline by creating a new service connection in our Azure Devops project.
I would like to mention all who helped me in the development of the project:
  1. Althaf H(CTO) in building the project flow and reviewing it
  2. Swetha SR (.Net Solution Architect) for developing the build pipelines (translating from manual build cycle to automated build pipelines)
  3. Narendra Reddy(.Net developer) in debugging the project
Also published on: https://dev.to/krishnakurtakoti/azure-devops-series-2-1c1l

Written by krishnagk | CODING
Published by HackerNoon on 2021/02/28