diff --git a/_posts/2026-07-30-quick-deploy-portal.md b/_posts/2026-07-30-quick-deploy-portal.md new file mode 100644 index 0000000000..24298306de --- /dev/null +++ b/_posts/2026-07-30-quick-deploy-portal.md @@ -0,0 +1,24 @@ +--- +title: "A simpler way to deploy ZIP packages to Azure App Service from the Azure portal" +author_name: "Tulika Chaudharie" +toc: true +toc_sticky: true +--- + +We recently introduced a simpler way to deploy applications to Azure App Service for Linux by uploading a ZIP package through Kudu. The experience lets you review the package contents, choose whether to run a server-side build, and follow the deployment through its different stages. + +This capability is now available directly in the **Azure portal** through **Deployment Center**. + +To use it: + +1. Open your Linux web app in the Azure portal. +2. Go to **Deployment Center**. +3. Select **Manual Deployment (Push)**. +4. Choose **Publish files (new)** as the source. +5. Drag and drop your ZIP file or select **Browse files**. + +![quickdeploy]({{site.baseurl}}/media/2026/07/quick-deploy-portal.jpg) + +You can now upload and deploy your application without navigating separately to the Kudu site. This is useful for getting started, testing an application, or performing an occasional manual deployment. For repeatable production deployments, we recommend configuring a CI/CD pipeline. + +To learn more about the deployment experience, including package preview, build options, progress tracking, and deployment logs, see our previous post: **[A simpler way to deploy your code to Azure App Service for Linux](https://azure.github.io/AppService/2026/04/06/quickdeploy.html)**. diff --git a/media/2026/07/quick-deploy-portal.jpg b/media/2026/07/quick-deploy-portal.jpg new file mode 100644 index 0000000000..d3a034c794 Binary files /dev/null and b/media/2026/07/quick-deploy-portal.jpg differ