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 60da2f4 commit 61160f7Copy full SHA for 61160f7
.github/workflows/dockerhub-readme-ci.yml
@@ -59,3 +59,11 @@ jobs:
59
-d "{\"description\":\"${SHORT_NEW}\", \"full_description\": ${NEW} }" \
60
"https://hub.docker.com/v2/repositories/${REPO}/")
61
echo "PATCH full_description -> $CODE"
62
+
63
+ # Check if the response code is 200 (success)
64
+ if [ "$CODE" != "200" ]; then
65
+ echo "❌ Failed to update Docker Hub README. HTTP status code: $CODE"
66
+ exit 1
67
+ fi
68
69
+ echo "✅ Successfully updated Docker Hub README"
0 commit comments