We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5800a17 commit 1ae3db7Copy full SHA for 1ae3db7
.github/workflows/pull-100-docker-images.yml
@@ -149,12 +149,13 @@ jobs:
149
)
150
151
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
+ docker pull "$image" || true
+ #echo "::group::Pulling $image"
+ #if ! docker image inspect "$image" > /dev/null 2>&1; then
+ # .github/retry.sh 5 2 docker pull "$image" || true
+ #else
+ # echo "Image already present"
158
+ #fi
159
echo "::endgroup::"
160
done
161
0 commit comments