Skip to content

Commit 77a816f

Browse files
committed
Fix loop for new line separted entries
1 parent 5dfba80 commit 77a816f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,8 @@ jobs:
108108
if: github.event_name != 'pull_request'
109109
shell: bash
110110
run: |
111-
for img in ${{ needs.build.outputs.image }}; do
111+
IMAGES="${{ needs.build.outputs.image }}"
112+
for img in $IMAGES; do
112113
docker pull "$img"
113114
done
114115

0 commit comments

Comments
 (0)