From 3163c15b7960d07cb791d5cb4fe781dd6676c467 Mon Sep 17 00:00:00 2001 From: Stan Runge Date: Sat, 11 Jan 2025 05:14:18 +0100 Subject: [PATCH] fix: missing env var --- .github/workflows/ci-cd.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index a5c4f8d..a3d4933 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -33,9 +33,9 @@ jobs: ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }} IMAGE_TAG: ${{ github.sha }} run: | - docker build -t $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG . - docker push $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG - echo "image=$ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG" >> $GITHUB_OUTPUT + docker build -t $ECR_REGISTRY/stan/website:$IMAGE_TAG . + docker push $ECR_REGISTRY/stan/website:$IMAGE_TAG + echo "image=$ECR_REGISTRY/stan/website:$IMAGE_TAG" >> $GITHUB_OUTPUT - name: Fill in the new image ID in the Amazon ECS task definition id: task-def