From ab105d637dda55ac6648b764699e2b21106f12f5 Mon Sep 17 00:00:00 2001 From: Gary Yendell Date: Thu, 1 Aug 2024 08:07:39 +0000 Subject: [PATCH] Workaround build-push-action download-artifact incompatibility --- .github/workflows/_container.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/_container.yml b/.github/workflows/_container.yml index 3ee61f1f..da5e4936 100644 --- a/.github/workflows/_container.yml +++ b/.github/workflows/_container.yml @@ -26,6 +26,8 @@ jobs: - name: Build and export to Docker local cache uses: docker/build-push-action@v6 + env: + DOCKER_BUILD_RECORD_UPLOAD: false with: context: . # Need load and tags so we can test it below @@ -47,6 +49,8 @@ jobs: - name: Push cached image to container registry if: github.ref_type == 'tag' uses: docker/build-push-action@v6 + env: + DOCKER_BUILD_RECORD_UPLOAD: false # This does not build the image again, it will find the image in the # Docker cache and publish it with: