Spread arguments

This commit is contained in:
asonix 2024-02-08 10:21:39 -06:00
parent ba5d891146
commit e7e13a41f0
1 changed files with 2 additions and 2 deletions

View File

@ -206,8 +206,8 @@ jobs:
run: | run: |
tags=$(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "${DOCKER_METADATA_OUTPUT_JSON}") tags=$(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "${DOCKER_METADATA_OUTPUT_JSON}")
images=$(printf "${{ env.REGISTRY_IMAGE }}@sha256:%s " *) images=$(printf "${{ env.REGISTRY_IMAGE }}@sha256:%s " *)
echo "Running 'docker buildx imagetools create \"${tags}\" \"${images}\"'" echo "Running 'docker buildx imagetools create ${tags[@]} ${images[@]}'"
docker buildx imagetools create ${tags} ${images} docker buildx imagetools create ${tags[@]} ${images[@]}
shell: bash shell: bash
- -
name: Inspect Image name: Inspect Image