Remove quotes from vars

This commit is contained in:
asonix 2024-02-08 10:14:54 -06:00
parent 883261fde8
commit ba5d891146
1 changed files with 1 additions and 1 deletions

View File

@ -207,7 +207,7 @@ jobs:
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