From ba5d8911462f02a40e47b9b6d0bd455a277e2b20 Mon Sep 17 00:00:00 2001 From: asonix Date: Thu, 8 Feb 2024 10:14:54 -0600 Subject: [PATCH] Remove quotes from vars --- .forgejo/workflows/publish.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.forgejo/workflows/publish.yaml b/.forgejo/workflows/publish.yaml index 3eb40b3..43d5563 100644 --- a/.forgejo/workflows/publish.yaml +++ b/.forgejo/workflows/publish.yaml @@ -207,7 +207,7 @@ jobs: 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}" + docker buildx imagetools create ${tags} ${images} shell: bash - name: Inspect Image