Reputation: 1743
I have a problem here, I need to generate CICD Azure Function on Azure DevOps. First of all, I'm deployed manually Azure Function on my vscode. Then I try to CICD using Azure DevOps, it was deployed successfully, but however, when I try it again to deploy manually on my vscode, I got an error like this.
Run-From-Zip is set to a remote URL using WEBSITE_RUN_FROM_PACKAGE or WEBSITE_USE_ZIP app setting.
Deployment is not supported in this configuration.
What happens to my Azure DevOps? This is the link of reference that I use to CICD my Azure Function CICD Link
Upvotes: 1
Views: 2643
Reputation:
Glad Rudy Tri Saputra, that you identified it was the module package error and resolved by updating your environment python version to 3.8 to follow up the ubuntu version 20.04.
Run-From-Zip is set to a remote URL using WEBSITE_RUN_FROM_PACKAGE or WEBSITE_USE_ZIP app setting. Deployment is not supported in this configuration.
For this kind of error, one of the workarounds is to make WEBSITE_RUN_FROM_PACKAGE
setting to 0
or Remove this WEBSITE_USE_ZIP
app setting in Function Configuration under the settings menu in the Azure portal.
Upvotes: 3