Showing posts with label CICD Pipeline. Show all posts
Showing posts with label CICD Pipeline. Show all posts

30 April 2024

CICD Pipeline

 CICD Pipeline

CI can be considered as the first stage in producing and delivering code, and CD as the second. CI focuses on preparing code for release (build/test), whereas CD involves the actual release of code (release/deploy).


  1. Create a build pipeline
  2. Build, Test, Publish and Publish Artifacts
  3. Azure Release pipeline

Publish Artifacts meaning - 

 Azure Artifacts enable developers to store and manage their packages and control who they want to share it with.

https://www.youtube.com/watch?v=eOQL0nXQlLs
In this Azure DevOps CI/CD Pipelines Tutorial video, we will show you building a CI/CD pipeline in Azure DevOps for ASP.NET Core applications. We will introduce you to Azure DevOps CI/CD Pipeline and show you how to set up a CI/CD pipeline using Azure. If you're working on an ASP.NET Core application, then you know that it's important to have a ...
www.youtube.com

Continuous Delivery - Manual Trigger

Continuous Deployment - Continuous Deployment

Implementing OAuth validation in a Web API

 I mplementing OAuth validation in a Web API Implementing OAuth validation in a Web API using C# typically involves several key steps to sec...