From ba04519546fa6b816b89dbf11dec4e0c226199ad Mon Sep 17 00:00:00 2001 From: Jade Ellis Date: Thu, 9 Jan 2025 03:01:45 +0000 Subject: [PATCH] fix issue with bash script for manifests --- .github/workflows/publish-image.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish-image.yml b/.github/workflows/publish-image.yml index 51300ac6..0a80f1bb 100644 --- a/.github/workflows/publish-image.yml +++ b/.github/workflows/publish-image.yml @@ -260,7 +260,7 @@ jobs: docker buildx imagetools create \ $(for tag in "${TAGS_LIST[@]}"; do echo "--tag"; echo "$tag"; done) \ $(for annotation in "${ANNOTATIONS_LIST[@]}"; do echo "--annotation"; echo "$annotation"; done) \ - $(for reference in *; do printf "$REPO@sha256:%s" $reference; done) + $(for reference in *; do printf "$REPO@sha256:%s\n" $reference; done) done - name: Inspect image