0

How can we create Deployment only YAML pipeline for 5 apps in specified sequence.These apps code are in different project and Repos have their own build pipeline which publish build artifacts to artifactory feed.

Sanjeev
  • 415
  • 5
  • 17

1 Answers1

1

These apps code are in different project and Repos

The Download Pipeline Artifacts task can download artifacts from a specific project/pipeline as long as you project name and pipeline id.

create Deployment only YAML pipeline for 5 apps in specified sequence.

It is suggested to put deployment steps in a deployment job. In the deploy life cycle hook, add the DownloadPipelineArtifact task to download your artifact and then deploy yout application in specified sequence.

Yang Shen - MSFT
  • 1,136
  • 1
  • 7
  • 9