Skip to content
This repository was archived by the owner on Jul 17, 2026. It is now read-only.

Commit 14769b3

Browse files
authored
Fix shell variable expansion in docker-merge CI step (#132)
The printf format string used single quotes which prevented shell variable expansion of ${PROJECT_ID} and ${IMAGE_NAME}.
1 parent 6efc3d0 commit 14769b3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,4 +145,4 @@ jobs:
145145
run: |
146146
docker buildx imagetools create \
147147
-t gcr.io/${PROJECT_ID}/${IMAGE_NAME}:${COMMIT_SHORT_SHA} \
148-
$(printf 'gcr.io/${PROJECT_ID}/${IMAGE_NAME}@sha256:%s ' *)
148+
$(printf "gcr.io/${PROJECT_ID}/${IMAGE_NAME}@sha256:%s " *)

0 commit comments

Comments
 (0)