From f532ab3917ff4048c7887619ef2623ce40d95dd2 Mon Sep 17 00:00:00 2001 From: Carol Br Date: Sat, 14 Dec 2024 02:42:27 -0300 Subject: [PATCH] Fix: update ECR registry reference in release workflow --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 46f602a4..eda366eb 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -146,7 +146,7 @@ jobs: kubectl get namespace $ENVIRONMENT || kubectl create namespace $ENVIRONMENT IMAGE_TAG=${{ env.NEW_VERSION }} - kustomize edit set image web=$ECR_REGISTRY/$ECR_REPOSITORY:${{ env.NEW_VERSION }} + kustomize edit set image web=${{ needs.build.outputs.ECR_REGISTRY }}/${{ env.ECR_REPOSITORY }}:${{ env.NEW_VERSION }} echo "Deploying resources in $ENVIRONMENT environment"