From d75e5a02ede7f5d5a802bbc37b26f6cc964d7d54 Mon Sep 17 00:00:00 2001 From: Scott Pouliot Date: Mon, 4 May 2026 22:34:07 -0400 Subject: [PATCH] Switch to Kudu zip deploy (config-zip) to match manual deploy behavior --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 149a4ce..8385dec 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -51,7 +51,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 deploy --resource-group rg-powdercoatinglogix-prod --name linuxpcl --src-path deploy.zip --type zip' + bat 'az webapp deployment source config-zip --resource-group rg-powdercoatinglogix-prod --name linuxpcl --src deploy.zip' bat 'az logout' } }