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 69
69
run : |
70
70
rm -rf /tmp/.buildx-cache
71
71
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
72
81
73
82
build-arm64 :
74
83
runs-on : self-hosted
@@ -127,6 +136,15 @@ jobs:
127
136
run : |
128
137
rm -rf /tmp/.buildx-cache
129
138
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
130
148
131
149
multi-arch-manifest :
132
150
runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments