Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix openshift release script #694

Merged
merged 1 commit into from
Sep 21, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions hack/publish-rhel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,12 @@ publish_the_image()
return 1
fi
else
local IMAGE_RELEASED=$(get_image published "${RHEL_PROJECT_ID}" "${VERSION}" "${RHEL_API_KEY}")
local IMAGE_RELEASED_EXISTS=$(echo $IMAGE_RELEASED | jq -r '.total')
if [[ $IMAGE_RELEASED_EXISTS != "0" ]]; then
echo "Image you are trying to publish is already published."
return 0
fi
echo "Image you are trying to publish does not exist."
return 1
fi
Expand Down