Skip to content

Commit cbc04ca

Browse files
authored
Workaround build-push-action download-artifact incompatibility (#178)
2 parents 9e70b8b + ab105d6 commit cbc04ca

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/_container.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ jobs:
2626

2727
- name: Build and export to Docker local cache
2828
uses: docker/build-push-action@v6
29+
env:
30+
DOCKER_BUILD_RECORD_UPLOAD: false
2931
with:
3032
context: .
3133
# Need load and tags so we can test it below
@@ -47,6 +49,8 @@ jobs:
4749
- name: Push cached image to container registry
4850
if: github.ref_type == 'tag'
4951
uses: docker/build-push-action@v6
52+
env:
53+
DOCKER_BUILD_RECORD_UPLOAD: false
5054
# This does not build the image again, it will find the image in the
5155
# Docker cache and publish it
5256
with:

0 commit comments

Comments
 (0)