Skip to content

Latest commit

 

History

History
85 lines (49 loc) · 5.08 KB

deploy-multiple-branches.md

File metadata and controls

85 lines (49 loc) · 5.08 KB
title description ms.topic ms.date monikerRange recommendations
Deploy to different stages from multiple branches
Learn how to use Classic release pipelines to deploy to different stages from multiple branches.
tutorial
08/06/2024
>= azure-devops-2019
true

Deploy to different stages from multiple branches using Classic release pipelines

[!INCLUDE version-gt-eq-2019]

Classic release pipelines provide a convenient graphical user interface for setting up a continuous delivery solution for your application. Classic releases can be configured to trigger deployments automatically whenever a new artifact is available. Artifact filters can be used with release triggers to deploy from multiple branches. By applying artifact filters to specific branches, you can control deployment to particular stages based on your needs.

In this article, you'll learn how to:

[!div class="checklist"]

  • Enable continuous deployment triggers.
  • Release from multiple branches.
  • Deploy to multiple stages.

Prerequisites

  • An Azure DevOps organization and a project. Create an organization or a project if you haven't already.

  • A working pipeline set up for your repository to build your project and generate a pipeline artifact. Create your first pipeline if you don't have one already.

Create a release pipeline

  1. Sign in to your Azure DevOps organization, and then navigate to your project.

  2. Select Pipelines > Releases. If this is your first release pipeline, select New Pipeline, otherwise select New > New release pipeline.

  3. When prompted to select a template, select Start with an empty job.

  4. Under Stages, select the stage and rename it to Dev. The following steps show how to configure this stage to be triggered when an artifact is published from the Dev branch.

    :::image type="content" source="media/dev-stage.png" alt-text="A screenshot displaying how to rename a stage in a Classic release pipeline.":::

  5. Under Artifacts, select Add to add an artifact. Specify your Source type and fill out the required fields (these vary based on the selected source type). Select Add when you're done.

    :::image type="content" source="media/add-artifact.png" alt-text="A screenshot that shows how to add an artifact to a Classic release pipeline.":::

  6. Select the Continuous deployment trigger icon, and then enable the Continuous deployment trigger to create a release whenever a new artifact is available.

    :::image type="content" source="media/enable-continuous-deployment-trigger.png" alt-text="A screenshot displaying how to enable the continuous deployment trigger.":::

  7. In the Dev stage, select the Pre-deployment conditions icon and set the deployment trigger to After release. This will trigger a deployment to this stage whenever a new release is created.

    :::image type="content" source="media/predeployment-trigger.png" alt-text="A screenshot that shows how to configure the pre-deployment conditions.":::

  8. while still in Pre-deployment conditions, enable Artifact filters, select Add, and then specify the artifact you selected earlier and set the Build branch to Dev.

    :::image type="content" source="media/predeployment-conditions-artifact-filters.png" alt-text="A screenshot displaying how to set up the Artifact filters in Pre-deployment conditions.":::

Add a new stage

  1. Sign in to your Azure DevOps organization, and then navigate to your project.

  2. Select Pipelines > Releases, select your release pipeline, and then select Edit.

  3. Under Stages, select Add > New stage to add a new stage.

  4. Select Start with an empty job when prompted to select a template.

  5. Select your new stage and rename it to Prod. The following steps show how to configure this stage to trigger when an artifact is published from the main branch.

  6. Select your Prod stage, select the Pre-deployment conditions icon, and set the deployment trigger to After release. This ensures deployment to this stage whenever a new release is created.

  7. Select the toggle button to enable Artifact filters. Select Add, and then specify the artifact you selected earlier and set the Build branch to main.

    :::image type="content" source="media/predeployment-conditions-prod.png" alt-text="A screenshot displaying how to configure predeployment conditions for the Prod stage.":::

Deploy to a specific stage

Now that you've set up your stages, every time a new artifact is available, the release pipeline will detect which branch triggered the build and deploy only to the appropriate stage.

:::image type="content" source="media/deploy-to-specific-stage.png" alt-text="A screenshot displaying deployment to a specific stage.":::

Related articles