Category: Microsoft, Ubuntu, github, yaml

I was just searching for hosted free CICD tools, I have found some of the tools like Azure Pipelines, Netlify, Github Actions, Circle CI. One of the best is Azure pipelines because in this we can add our agent and use the power of azure pipelines to create our CICD.

Azure Pipelines is a cloud service that you can use to automatically build and test your code project and make it available to other users.

The importing thing to note is Azure pipelines charges you for the agent usage so if you use a self-hosted Agent you can use Azure pipelines for free!!!

We will use the below YAML to create the build and publish the build artifacts on the Azure Artifacts so that we can use them in release Pipelines.

Related Articles