The Azure DevOps YAML pipeline configures the CI/CD process for your software projects hosted on Microsoft's infrastructure

YAML serialises configuration files in a human-readable way. YAML pipelines explain version-controlled build, test, and deploy procedures in Azure DevOps.

 

Create a new YAML file for your Ci/CD Pipeline

Go to your DevOps Account
Select Pipeline Tab
Click Button 'Create Pipeline'

  • Connect Tab
            - Shows the available Templates 
            - Select GItHub YAML Templates
  • Select Tab
            - This ask you to connect Git Hub Account - Authorize it
            - Select your repository to plance your YAML file (CICDPracticeRepo)
  • Configure Tab
          - this show you Template of minimal YAMl file + YAML as per Language 
             selecting on clicking on More
         - select ASP.Net Core
  • Review Page
         -Show the default YAML file for ASP.NET Core Environment
          File for creating this template for this pipeline.  
          We can change the implementation of this YAML.

 

If you wish to run, just click button ‘Save and Run’ on top right 


Related Question