Skip to content

Commit 6c463cd

Browse files
committed
Update alpine-mainline.yml
1 parent abff974 commit 6c463cd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/alpine-mainline.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,8 @@ jobs:
247247
set -x
248248
annotations=$(jq -cr '.annotations | map((split("=")[0] + "=\"" + split("=")[1] + "\"") | "--annotation " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON")
249249
tags=$(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON")
250-
eval "docker buildx imagetools create $annotations $tags $(for tar in /tmp/images/*.tar; do echo 'ghcr.io/nginxinc/nginx-unprivileged:temp-${tar##*/}'; done)"
250+
images=$(for tar in /tmp/images/*.tar; do echo "ghcr.io/nginxinc/nginx-unprivileged:temp-${tar##*/}"; done)
251+
eval "docker buildx imagetools create $annotations $tags $images"
251252
252253
- name: Inspect image
253254
run: |

0 commit comments

Comments
 (0)