Skip to content

Latest commit

 

History

History
18 lines (10 loc) · 556 Bytes

File metadata and controls

18 lines (10 loc) · 556 Bytes

YamlForAzureDevOps

YAML for Azure DevOps

Samples for deploying a web app to Azure App Service, via Azure DevOps Pipelines.

Basic

File: azure-pipelines.yml

This is a basic example which builds and deploys the app in the same job, without taking advantage of the built-in mechanisms of the MultiStage Azure Pipelines.

Multistage

File: azure-pipelines-multistage.yml

This example shows how to use the MultiStage Pipelines, using a Job for the Build and a Deployment Job for the Release.

This would be the preferred way to do CI/CD.