Skip to content

Commit 8e8e63c

Browse files
committed
Fix
1 parent 4ac1805 commit 8e8e63c

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

.github/workflows/debian.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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 }}

.github/workflows/rhel.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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 }}

.github/workflows/ubuntu.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff 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 }}

0 commit comments

Comments
 (0)