Add debug echo

This commit is contained in:
asonix 2024-02-08 10:13:59 -06:00
parent b227d0e4e4
commit 883261fde8

View file

@ -204,8 +204,9 @@ jobs:
name: Create manifest list and push
working-directory: /tmp/digests
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 " *)
echo "Running 'docker buildx imagetools create \"${tags}\" \"${images}\"'"
docker buildx imagetools create "${tags}" "${images}"
shell: bash
-