Hi,
I am trying to deploy the azure function with http trigger written in python on the Azure Function App. I created a build pipeline with all the steps in using azure function template in azure devops. Steps are as follows:

After the build is successful, I created a release pipeline and deploy the zip file to the Azure Function App using Azure CLI command as follows:
az functionapp deployment source config-zip -g {myRG} -n {myAppName} --src {zipFilePathLocation}
The deployment is successful, and I can see the deployment status as successful inside deployment center.

But the function is not visible inside the "Functions" Tab.
Please share your views on this.