From 760a56c203b15f61b4ad963854c12b132f4efb88 Mon Sep 17 00:00:00 2001 From: Stan Runge Date: Sat, 11 Jan 2025 05:27:05 +0100 Subject: [PATCH] fix: registry name typo --- .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 dde27dd..83e4981 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/stan/website:$IMAGE_TAG packages/web - docker push $ECR_REGISTRY/stan/website:$IMAGE_TAG - echo "image=$ECR_REGISTRY/stan/website:$IMAGE_TAG" >> $GITHUB_OUTPUT + docker build -t $ECR_REGISTRY/stan/personal-website:$IMAGE_TAG packages/web + docker push $ECR_REGISTRY/stan/personal-website:$IMAGE_TAG + echo "image=$ECR_REGISTRY/stan/personal-website:$IMAGE_TAG" >> $GITHUB_OUTPUT - name: Fill in the new image ID in the Amazon ECS task definition id: task-def