Skip to content

Commit 1ae3db7

Browse files
authored
Update pull-100-docker-images.yml
1 parent 5800a17 commit 1ae3db7

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

.github/workflows/pull-100-docker-images.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -149,12 +149,13 @@ jobs:
149149
)
150150
151151
for image in "${images[@]}"; do
152-
echo "::group::Pulling $image"
153-
if ! docker image inspect "$image" > /dev/null 2>&1; then
154-
.github/retry.sh 5 2 docker pull "$image" || true
155-
else
156-
echo "Image already present"
157-
fi
152+
docker pull "$image" || true
153+
#echo "::group::Pulling $image"
154+
#if ! docker image inspect "$image" > /dev/null 2>&1; then
155+
# .github/retry.sh 5 2 docker pull "$image" || true
156+
#else
157+
# echo "Image already present"
158+
#fi
158159
echo "::endgroup::"
159160
done
160161

0 commit comments

Comments
 (0)