Skip to content

Commit 7ebf937

Browse files
committed
Update services to separate by comma
1 parent ba228e7 commit 7ebf937

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -240,15 +240,15 @@ jobs:
240240
env:
241241
container_registry: ${{ env.REGISTRY_HOST }}
242242
docker_services: >-
243-
${{ join(fromJSON(needs.containers-to-build.outputs.docker_services || '[]'), '\n') }}
243+
${{ join(fromJSON(needs.containers-to-build.outputs.docker_services || '[]'), ',') }}
244244
run: |
245245
echo Running 'docker buildx imagetools' on remote repositories...
246246
247247
if [[ ${USE_AZURECR} == 'true' ]]; then
248248
az acr login --name "${ACR_NAME}"
249249
fi
250250
251-
echo "$docker_services" | while IFS= read -r service; do
251+
echo "$docker_services" | while IFS=, read -r service; do
252252
image_name="${project_name}-${service}"
253253
registry_image=${container_registry,,}/${image_name,,}
254254

0 commit comments

Comments
 (0)