From 84a91962b8d552610b30122741117af395706cbe Mon Sep 17 00:00:00 2001 From: Phillip Date: Mon, 20 Jan 2025 16:58:23 +0100 Subject: [PATCH] BC-8763 workaround for actions/build-push-action@v6 (#50) as it appears to be incompatible with actions/download-artifact@v4 /https://github.com/cloudposse/github-action-matrix-outputs-read/issues/29#issuecomment-2178913317 see https://github.com/docker/build-push-action/issues/1167 in short if one downloads an artifact that is not of type zip it might/will fail to download so most of the times this https://github.com/actions/toolkit/pull/1874 might resolve the whole mess --- .github/workflows/tag.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/tag.yml b/.github/workflows/tag.yml index 9042e1d4..b1840a49 100644 --- a/.github/workflows/tag.yml +++ b/.github/workflows/tag.yml @@ -40,6 +40,8 @@ jobs: - name: Build and push ${{ github.repository }} uses: docker/build-push-action@v6 + env: + DOCKER_BUILD_RECORD_UPLOAD: false with: context: . file: ./Dockerfile