From 883261fde845acf018921bd339896c0d52eb9788 Mon Sep 17 00:00:00 2001 From: asonix Date: Thu, 8 Feb 2024 10:13:59 -0600 Subject: [PATCH] Add debug echo --- .forgejo/workflows/publish.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.forgejo/workflows/publish.yaml b/.forgejo/workflows/publish.yaml index 49b1051..3eb40b3 100644 --- a/.forgejo/workflows/publish.yaml +++ b/.forgejo/workflows/publish.yaml @@ -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 -