Fix typo in release handling script.
Austin S. Hemmelgarn committed
Apr 15, 2022 at 08:30 UTC
325a42a3392f0058d8b7d3ec8d507e77ecd47b93
1 file changed
+1
-1
.github/scripts/prepare-release-base.sh
+1
-1
@@ -128,7 +128,7 @@ elif [ "${EVENT_TYPE}" = 'patch' ] && [ "${EVENT_VERSION}" != "nightly" ]; then
128
git checkout "${branch_name}"
129
minor_matches || exit 1
130
major_matches || exit 1
131
- check_newer_patch_number || exit 1
131
+ check_newer_patch_version || exit 1
132
echo "${EVENT_VERSION}" > packaging/version || exit 1
133
echo "::set-output name=run::true"
134
echo "::set-output name=message::Patch release ${EVENT_VERSION}."