KRM
KRM

Reputation: 129

Can I create Release pipeline (CD) in Azure DevOps directly using YAML?

I need to create a release pipeline (CD) without creating a CI pipeline. I will use artifacts from GitHub. Can I create the CD using YAML or it is like I need to create CI with YAML and CD can not be created directly using YAML ?

Upvotes: 0

Views: 338

Answers (1)

Krzysztof Madej
Krzysztof Madej

Reputation: 40613

You can't create Release classic pipeline using YAML. Your only option is the editor. But YAML has something different (which in the future can replace Release pipelines - this is my personal opinion). It is job deployments. Please take a look here.

Upvotes: 1

Related Questions