Skip to content
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
9 changes: 8 additions & 1 deletion .github/workflows/release-operator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,14 @@ jobs:
preflight -v
make docker-push-redhat
make redhat-preflight-check-image
make report-preflight-check-result
make report-preflight-check-result || {
echo "::warning::Preflight submission failed - image may already be published"
if [[ $? -eq 1 ]]; then
echo "Image appears to be already certified, continuing..."
exit 0
fi
exit 1
}

export BUNDLE_IMG=$IMAGE_TAG_BASE_QUAY-bundle:v$VERSION
export CHANNELS=alpha,beta,stable
Expand Down