Azure App Service is a service used to create and deploy scalable, mission-critical web apps.
Hi @Andy Vanosdale
The “Service Unavailable (503)” error during deployment with azure/webapps-deploy@v3 usually means the Azure App Service can’t process the request because of limited resources or platform issues. Deployments through GitHub Actions use the Kudu (SCM) endpoint, and if that’s also returning a 503 error, the deployment will fail. As noted in Microsoft’s documentation, “HTTP 503 Service Unavailable errors can occur when the app doesn’t have sufficient resources (CPU, memory, disk) to run or the platform is unable to allocate resources. Apps in lower tiers such as Free or Shared are subject to resource quotas that can result in a 503 if those quotas are exceeded.” Restarting the App Service may fix temporary resource problems, but if the issue continues, Microsoft suggests upgrading the App Service Plan to a higher tier for dedicated resources and to prevent quota-related errors.
https://learn.microsoft.com/en-us/azure/app-service/troubleshoot-http-502-http-503?utm_source=chatgpt.com
Let me know if you have any further assistances needed.
If this answers your query, do click Accept Answer and Yes for was this answer helpful. And, if you have any further query do let us know.