From e9aef794bfc6cb612bf370279eb5df4a5cdbb1cb Mon Sep 17 00:00:00 2001 From: Abel Ratanaphan Date: Thu, 22 Aug 2024 09:41:19 -0400 Subject: [PATCH] fix: arm64 to x86 description --- .github/workflows/aws.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/aws.yml b/.github/workflows/aws.yml index 45522c3..23395bf 100644 --- a/.github/workflows/aws.yml +++ b/.github/workflows/aws.yml @@ -37,7 +37,7 @@ jobs: aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} aws-region: ${{ secrets.AWS_REGION }} - - name: Login to Amazon ECR + - name: Login to AWS ECR id: login-ecr uses: aws-actions/amazon-ecr-login@v2 @@ -47,7 +47,7 @@ jobs: ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }} IMAGE_TAG: latest run: | - # Use Docker Buildx to build the image for ARM64 + # Use Docker Buildx to build the image for x86_64 docker buildx build --platform linux/amd64 --push -t $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG . echo "image=$ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG" >> $GITHUB_OUTPUT