Skip to content

Commit 551daa2

Browse files
authored
BC-8763 workaround for actions/build-push-action@v6 (#3506)
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 2c9043c commit 551daa2

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
@@ -62,6 +62,8 @@ jobs:
6262
- name: Build and push ${{ github.repository }}
6363
if: ${{ env.IMAGE_EXISTS == 0 }}
6464
uses: docker/build-push-action@v6
65+
env:
66+
DOCKER_BUILD_RECORD_UPLOAD: false
6567
with:
6668
build-args: |
6769
SC_THEME=${{ matrix.tenants }}

.github/workflows/tag.yml

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

4545
- name: Build and push ${{ github.repository }}
4646
uses: docker/build-push-action@v6
47+
env:
48+
DOCKER_BUILD_RECORD_UPLOAD: false
4749
with:
4850
build-args: |
4951
SC_THEME=${{ matrix.tenants }}

0 commit comments

Comments
 (0)