From eabccba3fab9a37f8347f7128699593238d60b31 Mon Sep 17 00:00:00 2001 From: Pepe Fagoaga Date: Thu, 2 Mar 2023 10:37:29 +0100 Subject: [PATCH] fix(actions): push should be true (#2019) --- .github/workflows/build-lint-push-containers.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-lint-push-containers.yml b/.github/workflows/build-lint-push-containers.yml index 43a83794..ebfb2ef7 100644 --- a/.github/workflows/build-lint-push-containers.yml +++ b/.github/workflows/build-lint-push-containers.yml @@ -73,7 +73,7 @@ jobs: if: github.event_name == 'push' uses: docker/build-push-action@v2 with: - push: push + push: true tags: | ${{ secrets.DOCKER_HUB_REPOSITORY }}/${{ env.IMAGE_NAME }}:${{ env.LATEST_TAG }} ${{ secrets.PUBLIC_ECR_REPOSITORY }}/${{ env.IMAGE_NAME }}:${{ env.LATEST_TAG }} @@ -86,7 +86,7 @@ jobs: # Use local context to get changes # https://github.com/docker/build-push-action#path-context context: . - push: push + push: true tags: | ${{ secrets.DOCKER_HUB_REPOSITORY }}/${{ env.IMAGE_NAME }}:${{ github.event.release.tag_name }} ${{ secrets.DOCKER_HUB_REPOSITORY }}/${{ env.IMAGE_NAME }}:${{ env.STABLE_TAG }}