skip to Main Content

azure function in 'read only mode' – AzureDevops pipeline deployment from zip

I am deploying azure function using Azure Devops pipeline: https://learn.microsoft.com/en-us/azure/devops/pipelines/tasks/reference/azure-function-app-v1?view=azure-pipelines - task: AzureFunctionApp@1 displayName: 'Deploy functions to Function App' inputs: azureSubscription: Subscription appType: functionAppLinux appName: 'functionX' package: $(System.DefaultWorkingDirectory)/functions.zip resourceGroupName: $(resourcegroup) All works great and gets deployed no errors. The problem…

VIEW QUESTION
Back To Top
Search