From acdd66e00785c767e2325c9d788229a34e54ac0f Mon Sep 17 00:00:00 2001 From: Emmanuel Knafo Date: Wed, 22 Jul 2026 13:25:01 -0400 Subject: [PATCH] fix(workflows): remove unrecognized containerImageName Bicep parameter The ADO sync re-added containerImageName to the az deployment sub create call, but main.bicep does not define it, causing 'unrecognized template parameter'. Removes it to realign with the ADO pipeline (which never passed it) and GitLab. containerImageName is referenced only in the GitHub workflow, so other providers are unaffected. Fixes #66 --- .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