From 39847490c97ce9e8ee038fbee3984f32fcfc0c0e Mon Sep 17 00:00:00 2001 From: Sam Seed Date: Tue, 10 Oct 2023 10:06:00 +0100 Subject: [PATCH] Don't output value of image-exists --- .github/workflows/aws_deploy.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/aws_deploy.yml b/.github/workflows/aws_deploy.yml index 2683b9064..09cc23990 100644 --- a/.github/workflows/aws_deploy.yml +++ b/.github/workflows/aws_deploy.yml @@ -53,10 +53,6 @@ jobs: run: | echo "image-exists=$(if aws ecr list-images --repository-name=$repository --query "imageIds[*].imageTag" | grep -q ${{ github.sha }}; then echo true; else echo false; fi)" >> $GITHUB_ENV - - name: Check value of image-exists - run: | - echo ${{ env.image-exists }} - - name: Build, tag, and push docker image to ECR id: build-image if: ${{ 'true' == 'false' }}