File tree Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Original file line number Diff line number Diff line change 6969 run : |
7070 rm -rf /tmp/.buildx-cache
7171 mv /tmp/.buildx-cache-new /tmp/.buildx-cache
72+ # TEMP fix
73+ # Something strange is happening with the manifests when we push which
74+ # breaks the downstream multi-arch-manifest, so pull and push to work
75+ # around this by resubmitting manifests
76+ - name : pull-and-push
77+ run : |
78+ for t in `echo '${{ steps.meta.outputs.tags }}'`; do
79+ docker pull $t && docker push $t
80+ done
7281
7382 build-arm64 :
7483 runs-on : self-hosted
@@ -127,6 +136,15 @@ jobs:
127136 run : |
128137 rm -rf /tmp/.buildx-cache
129138 mv /tmp/.buildx-cache-new /tmp/.buildx-cache
139+ # TEMP fix
140+ # Something strange is happening with the manifests when we push which
141+ # breaks the downstream multi-arch-manifest, so pull and push to work
142+ # around this by resubmitting manifests
143+ - name : pull-and-push
144+ run : |
145+ for t in `echo '${{ steps.meta.outputs.tags }}'`; do
146+ docker pull $t && docker push $t
147+ done
130148
131149 multi-arch-manifest :
132150 runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments