From 110d504516623d196d06d9df0d69e3516ce3d6de Mon Sep 17 00:00:00 2001 From: Jamil Date: Tue, 24 Jun 2025 14:03:11 -0700 Subject: [PATCH] fix(ci): maintain whitespace in sources list (#9663) Another issue was introduced in #9590 - we need to maintain the whitespace in the sources list when generating them. Fixes https://github.com/firezone/firezone/actions/runs/15859521283/job/44713395755 --- .github/workflows/_build_artifacts.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/_build_artifacts.yml b/.github/workflows/_build_artifacts.yml index ebf43eaf7..fcd69e1df 100644 --- a/.github/workflows/_build_artifacts.yml +++ b/.github/workflows/_build_artifacts.yml @@ -466,7 +466,7 @@ jobs: working-directory: /tmp/digests/${{ matrix.image.name }} run: | tags=$(jq -cr '.tags | map("-t " + .) | join(" ")' <<< "$DOCKER_METADATA_OUTPUT_JSON") - sources=$(printf '${{ steps.login.outputs.registry }}/firezone/${{ matrix.image_prefix && format('{0}/', matrix.image_prefix) || '' }}${{ matrix.image.name }}@sha256:%s' *) + sources=$(printf '${{ steps.login.outputs.registry }}/firezone/${{ matrix.image_prefix && format('{0}/', matrix.image_prefix) || '' }}${{ matrix.image.name }}@sha256:%s ' *) echo "Tags: $tags" echo "Sources: $sources"