Skip to content

feat: Add release.sh script and detect breaking changes #5366

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

Merged
merged 11 commits into from
Dec 15, 2022
Prev Previous commit
Fix value check
  • Loading branch information
mafredri committed Dec 15, 2022
commit 906a32485e3e0dfba80b38161c7e9358f468e3a9
2 changes: 1 addition & 1 deletion scripts/release/check_commit_metadata.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ to_ref=${2:-}
if [[ -z $from_ref ]]; then
error "No from_ref specified"
fi
if [[ -z $from_ref ]]; then
if [[ -z $to_ref ]]; then
error "No to_ref specified"
fi

Expand Down