From 80b16b9ec64f0674f93a828bf75318e1e180c70c Mon Sep 17 00:00:00 2001 From: Emmanuel Knafo Date: Sun, 19 Jul 2026 16:17:40 -0400 Subject: [PATCH] fix(workflows): remove obsolete containerImageName param from deploy step The ADO sync removed containerImageName from the Bicep templates, but the GitHub workflow still passed it, causing az deployment sub create to fail with exit code 1. Remove the variable and parameter to match the new Bicep contract; the container image is configured separately via ACR managed identity and docker push. Fixes #62 --- .github/workflows/cicd.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index 847fcc9..12809e6 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -74,7 +74,6 @@ jobs: $appServicePlanName = "asp-gh-aspnet-webapp-$instanceNumber" $webAppName = "app-gh-aspnet-webapp-$instanceNumber" $resourceGroupName = "rg-gh-aspnet-webapp-$instanceNumber" - $containerImageName = "webapp01:latest" # Deployment name based only on instance number for idempotence $deploymentName = "deploy-infra-$instanceNumber" @@ -98,7 +97,6 @@ jobs: --parameters appServicePlanName=$appServicePlanName ` --parameters webAppName=$webAppName ` --parameters location=$location ` - --parameters containerImageName=$containerImageName ` --parameters resourceGroupName=$resourceGroupName ` --query "properties.outputs" -o json