In this section, we will discuss DevOps techniques and, in particular, how you can create a CI/CD process for your Azure Functions with Azure DevOps.
First, to have source code management, your function's code must be hosted on a Git repository. Here, we're using Azure DevOps as a repository for our CI/CD process:
- To start, create a new project in Azure DevOps. This project will contain a Git repository for your source code. By clicking on the Repos menu on the left, you will see the URL of this repository. Clone it into your local folder with the following command:
Git clone https://demiliani@dev.azure.com/demiliani/AzureFunctionDevOps/_git/AzureFunctionDevOps
- In this local repository, I've placed all the project ...