Skip to content
This repository was archived by the owner on Feb 28, 2025. It is now read-only.

Commit 7a16e04

Browse files
authored
BC-8763 workaround for actions/build-push-action@v6 (#38)
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 b5fcf1e commit 7a16e04

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

.github/workflows/push.yml

+2
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,8 @@ jobs:
5959
- name: Build and push ${{ github.repository }}
6060
if: ${{ env.IMAGE_EXISTS == 0 }}
6161
uses: docker/build-push-action@v6
62+
env:
63+
DOCKER_BUILD_RECORD_UPLOAD: false
6264
with:
6365
context: .
6466
file: ./Dockerfile

.github/workflows/tag.yml

+2
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,8 @@ jobs:
4141

4242
- name: Build and push ${{ github.repository }}
4343
uses: docker/build-push-action@v6
44+
env:
45+
DOCKER_BUILD_RECORD_UPLOAD: false
4446
with:
4547
context: .
4648
file: ./Dockerfile

0 commit comments

Comments
 (0)