How do I edit view and edit the YAML file for the Release Pipeline in Azure Dev Ops?

前端 未结 1 1252
执笔经年
执笔经年 2021-01-18 11:24

I\'ve successfully built my code on Azure Dev Ops by modifying the pipeline YAML file, but I have been unable to successfully deploy the artifact to my IIS Server. The only

相关标签:
1条回答
  • 2021-01-18 11:40

    The "Release" section in Azure DevOps is still only in the UI, you can't use it in YAML.

    But when you enable the multi-stage pipelines you can use the "build" YAML pipelines also to deploy your app (you can see that no "Builds" tab anymore, there is "Pipelines").

    The downside is that you don't have all the features that exist in the release, like approvals, gates, etc. but you can see in the roadmap that Microsoft work on it and the features will be available also in the YAML.

    You can check this article on how to use the multi-stage YAML for build & deployment.

    Another good tutorial from Microsoft available here.

    0 讨论(0)
提交回复
热议问题