We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 51692eb commit aefb78dCopy full SHA for aefb78d
dc/registry_delete.sh
@@ -43,10 +43,10 @@ if [ -n "$DELETE_SINCE_DAYS" ]; then
43
echo "::notice::Deleting images older than $DELETE_SINCE_DAYS days"
44
repo_tags=$(curl -s -u $HTTPS_USERNAME https://$REGISTRY_URL/v2/$GITHUB_OWNER/$APP_NAME/tags/list | jq -r '.tags[]?')
45
if [ -z "$repo_tags" ]; then
46
- echo "::warning::No images found for $APP_NAME"
+ echo "::notice::No images found for $APP_NAME"
47
exit 0
48
fi
49
-
+
50
while IFS= read -r tag; do
51
manifest=$(curl -s -u $HTTPS_USERNAME \
52
-H "Accept: application/vnd.docker.distribution.manifest.v2+json" \
0 commit comments