I have a webapp in Azure , TestApp in RG TestRG . I have created a zip for deployment and use the following powershell script
az webapp deployment source config-zip -n "TestApp" -g "TestRG" --src "c:\test\deployfile.zip"
It gives the warning
"az : Getting scm site credentials for zip deployment"
Then it says the following:
Starting zip deployment. This operation can take a while to complete ...
Deployment endpoint responded with status code 202
But after that i get a json response that it succeeded under provisioningState field.
When i navigate to the App service in Azure under Setings -WebJobs I dont see that web Job ?
Is there an issue with the powershell script ?