File tree Expand file tree Collapse file tree 3 files changed +6
-7
lines changed
Expand file tree Collapse file tree 3 files changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -195,8 +195,8 @@ jobs:
195195 shell : bash
196196 run : |
197197 docker buildx imagetools create $(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") \
198- $(printf '${{ inputs.image }}@sha256:%s ' *)
198+ $(printf '${{ env.CONTAINER_IMAGE }}@sha256:%s ' *)
199199 - name : Inspect image
200200 shell : bash
201201 run : |
202- docker buildx imagetools inspect ${{ inputs.image }}:${{ steps.meta.outputs.version }}
202+ docker buildx imagetools inspect ${{ env.CONTAINER_IMAGE }}:${{ steps.meta.outputs.version }}
Original file line number Diff line number Diff line change @@ -164,8 +164,8 @@ jobs:
164164 shell : bash
165165 run : |
166166 docker buildx imagetools create $(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") \
167- $(printf '${{ inputs.image }}@sha256:%s ' *)
167+ $(printf '${{ env.CONTAINER_IMAGE }}@sha256:%s ' *)
168168 - name : Inspect image
169169 shell : bash
170170 run : |
171- docker buildx imagetools inspect ${{ inputs.image }}:${{ steps.meta.outputs.version }}
171+ docker buildx imagetools inspect ${{ env.CONTAINER_IMAGE }}:${{ steps.meta.outputs.version }}
Original file line number Diff line number Diff line change @@ -190,9 +190,8 @@ jobs:
190190 shell : bash
191191 run : |
192192 docker buildx imagetools create $(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") \
193- $(printf '${{ inputs.image }}@sha256:%s ' *)
193+ $(printf '${{ env.CONTAINER_IMAGE }}@sha256:%s ' *)
194194 - name : Inspect image
195195 shell : bash
196196 run : |
197- docker buildx imagetools inspect ${{ inputs.image }}:${{ steps.meta.outputs.version }}
198-
197+ docker buildx imagetools inspect ${{ env.CONTAINER_IMAGE }}:${{ steps.meta.outputs.version }}
You can’t perform that action at this time.
0 commit comments