File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change 42
42
with :
43
43
images : |
44
44
${{ env.IMAGE_NAME }}
45
- ghcr.io/${{ env.IMAGE_NAME }}
46
45
flavor : |
47
46
latest=false
48
47
suffix=-amd64
69
68
run : |
70
69
rm -rf /tmp/.buildx-cache
71
70
mv /tmp/.buildx-cache-new /tmp/.buildx-cache
71
+ - run : docker pull ${{ steps.meta.outputs.tags }}
72
+ - run : docker tag ${{ steps.meta.outputs.tags }} ghcr.io/${{ steps.meta.outputs.tags }}
73
+ - run : docker push ghcr.io/${{ steps.meta.outputs.tags }}
72
74
73
75
build-arm64 :
74
76
runs-on : self-hosted
@@ -100,7 +102,6 @@ jobs:
100
102
with :
101
103
images : |
102
104
${{ env.IMAGE_NAME }}
103
- ghcr.io/${{ env.IMAGE_NAME }}
104
105
flavor : |
105
106
latest=false
106
107
suffix=-arm64v8
@@ -127,6 +128,9 @@ jobs:
127
128
run : |
128
129
rm -rf /tmp/.buildx-cache
129
130
mv /tmp/.buildx-cache-new /tmp/.buildx-cache
131
+ - run : docker pull ${{ steps.meta.outputs.tags }}
132
+ - run : docker tag ${{ steps.meta.outputs.tags }} ghcr.io/${{ steps.meta.outputs.tags }}
133
+ - run : docker push ghcr.io/${{ steps.meta.outputs.tags }}
130
134
131
135
multi-arch-manifest :
132
136
runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments