Skip to content

Commit 00ca16d

Browse files
committed
Fix correct item separation using comma
1 parent 7ebf937 commit 00ca16d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/stage-3-build.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,8 @@ jobs:
248248
az acr login --name "${ACR_NAME}"
249249
fi
250250
251-
echo "$docker_services" | while IFS=, read -r service; do
251+
IFS=',' read -ra services <<< "$docker_services"
252+
for service in "${services[@]}"; do
252253
image_name="${project_name}-${service}"
253254
registry_image=${container_registry,,}/${image_name,,}
254255

0 commit comments

Comments
 (0)