Hangfire server and client in different Azure App Service

I was checking the documentation and saw that it is possible to have server and client in different Azure App Services.

The issue is that I don’t know what will happen if I deploy several times a day new jobs and what happens with the jobs that are running at that time, I am guessing that these jobs will stop because when I am deploying new code, the App Service will be restarted.

So I plan to deploy the client and server separately, the server App Service will not be deployed, just once, and when a want to add a new job, I just deploy the client, and the server will not restart.

Or what is the best practice?