Skip to content

Commit f5e9d1e

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 ab07f39 commit f5e9d1e

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

.github/workflows/tag.yml

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

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

0 commit comments

Comments
 (0)