From 56c8b71706954a76a7f0c2fd60bd5e4e470f92a5 Mon Sep 17 00:00:00 2001 From: Scott Pouliot Date: Mon, 4 May 2026 23:01:09 -0400 Subject: [PATCH] Use az webapp deploy --type zip --async for WEBSITE_RUN_FROM_PACKAGE=1 mode --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index cb1a0df..553973f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -52,7 +52,7 @@ pipeline { )]) { bat 'az login --service-principal -u "%AZ_CLIENT_ID%" -p "%AZ_CLIENT_SECRET%" --tenant "%AZ_TENANT_ID%" --output none' bat 'az account set --subscription "%AZ_SUB_ID%"' - bat 'az webapp deployment source config-zip --resource-group rg-powdercoatinglogix-prod --name linuxpcl --src deploy.zip' + bat 'az webapp deploy --resource-group rg-powdercoatinglogix-prod --name linuxpcl --src-path deploy.zip --type zip --async true' bat 'az logout' } }