Skip to content

Commit

Permalink
BC-8763 workaround for actions/build-push-action@v6
Browse files Browse the repository at this point in the history
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
  • Loading branch information
Loki-Afro committed Jan 20, 2025
1 parent 8fedf85 commit f2d409c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,9 @@ jobs:
pull: true
tags: ghcr.io/${{ github.repository }}:${{ github.sha }}
labels: ${{ steps.docker_meta_img.outputs.labels }}

env:
DOCKER_BUILD_RECORD_UPLOAD: false

- name: Install Cosign
uses: sigstore/[email protected]

Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ jobs:
pull: true
tags: ${{ steps.docker_meta_img.outputs.tags }}
labels: ${{ steps.docker_meta_img.outputs.labels }}
env:
DOCKER_BUILD_RECORD_UPLOAD: false


- name: Install Cosign
Expand Down

0 comments on commit f2d409c

Please sign in to comment.