From e7e13a41f02a81c09599786405672dc41a94d78d Mon Sep 17 00:00:00 2001 From: asonix Date: Thu, 8 Feb 2024 10:21:39 -0600 Subject: [PATCH] Spread arguments --- .forgejo/workflows/publish.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.forgejo/workflows/publish.yaml b/.forgejo/workflows/publish.yaml index 43d5563..7d2bca1 100644 --- a/.forgejo/workflows/publish.yaml +++ b/.forgejo/workflows/publish.yaml @@ -206,8 +206,8 @@ jobs: run: | tags=$(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "${DOCKER_METADATA_OUTPUT_JSON}") images=$(printf "${{ env.REGISTRY_IMAGE }}@sha256:%s " *) - echo "Running 'docker buildx imagetools create \"${tags}\" \"${images}\"'" - docker buildx imagetools create ${tags} ${images} + echo "Running 'docker buildx imagetools create ${tags[@]} ${images[@]}'" + docker buildx imagetools create ${tags[@]} ${images[@]} shell: bash - name: Inspect Image