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 2f21dda commit 3d920fdCopy full SHA for 3d920fd
.github/scripts/reclaim-docker-diskspace.sh
@@ -6,6 +6,7 @@ docker image ls --format "{{.Size}} {{.ID}} {{.Repository}} {{.Tag}}" | LANG=en_
6
image=$( echo "$line" | cut -d' ' -f2 )
7
repository=$( echo "$line" | cut -d' ' -f3 )
8
tag=$( echo "$line" | cut -d' ' -f4 )
9
+ echo "Considering $image $repository:$tag $size"
10
if [[ "$tag" =~ ^[a-f0-9]{32}$ ]]; then
11
echo "Ignoring GitHub action image $image $repository:$tag"
12
elif [[ "$tag" == "<none>" ]]; then
0 commit comments