I'm deploying a WebJob using a release pipeline. The pipeline task is being called as follows:
- az webapp deployment source config-zip -g <my-resource-group> -n <my-app-service> --src $zipFilePathLocation
It happens that when deploying, the other WebJobs that were running on the same resource were Deleted.
Deploying directly through Visual Studio, WebJob rises correctly without deleting the other Jobs.
However, I need to deploy via Azure CLI.
Does anyone have any idea what might be going on?