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 598d1cd commit a674691
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,8 @@ jobs:
- name: Build and push ${{ github.repository }}
if: ${{ env.IMAGE_EXISTS == 0 }}
uses: docker/build-push-action@v6
env:
DOCKER_BUILD_RECORD_UPLOAD: false
env:
DOCKER_BUILD_RECORD_UPLOAD: false
with:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ jobs:

- name: Build and push ${{ github.repository }}
uses: docker/build-push-action@v6
env:
DOCKER_BUILD_RECORD_UPLOAD: false
with:
context: .
file: ./Dockerfile
Expand Down

0 comments on commit a674691

Please sign in to comment.