Skip to content

Commit 0f0ff50

Browse files
committed
BC-8763 workaround for actions/build-push-action@v6
as it appears to be incompatible with actions/download-artifact@v4 /cloudposse/github-action-matrix-outputs-read#29 (comment) see docker/build-push-action#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 actions/toolkit#1874 might resolve the whole mess
1 parent 2f4987e commit 0f0ff50

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

.github/workflows/push.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,8 @@ jobs:
4545
- name: Build and push ${{ github.repository }}
4646
if: ${{ env.IMAGE_EXISTS == 0 }}
4747
uses: docker/build-push-action@v6
48+
env:
49+
DOCKER_BUILD_RECORD_UPLOAD: false
4850
with:
4951
context: .
5052
file: ./Dockerfile

.github/workflows/tag.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@ jobs:
4747

4848
- name: Build and push ${{ github.repository }}
4949
uses: docker/build-push-action@v6
50+
env:
51+
DOCKER_BUILD_RECORD_UPLOAD: false
5052
with:
5153
context: .
5254
file: ./Dockerfile

0 commit comments

Comments
 (0)