File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -118,12 +118,18 @@ jobs:
118
118
CREATED=${{ steps.vars.outputs.image_created }}
119
119
tags : |
120
120
quay.io/${{ env.IMAGE_REGISTRY_NAMESPACE }}/${{ env.IMAGE_REPOSITORY }}:${{ steps.vars.outputs.image_tag }}
121
- quay.io/${{ env.IMAGE_REGISTRY_NAMESPACE }}/${{ env.IMAGE_REPOSITORY }}:${{ steps.vars.outputs.image_tag }}-${{ steps.vars.outputs.timestamp }}
122
121
platforms : linux/amd64,linux/arm64/v8
123
122
labels : ${{ steps.vars.outputs.image_labels }}
124
123
provenance : false
125
124
target : JAVA_BASE_IMAGE
126
125
126
+ - name : Push additional image to quay.io
127
+ env :
128
+ SRC_IMAGE : quay.io/${{ env.IMAGE_REGISTRY_NAMESPACE }}/${{ env.IMAGE_REPOSITORY }}:${{ steps.vars.outputs.image_tag }}
129
+ DST_IMAGE : ${{ env.IMAGE_REGISTRY_NAMESPACE }}/${{ env.IMAGE_REPOSITORY }}:${{ steps.vars.outputs.image_tag }}-${{ steps.vars.outputs.timestamp }}
130
+ run : |
131
+ docker buildx imagetools create ${{ env.SRC_IMAGE }} -t ${{ env.DST_IMAGE }}
132
+
127
133
- name : Push Image to docker.io
128
134
if : github.ref_name == 'master'
129
135
env :
You can’t perform that action at this time.
0 commit comments