Fix typo in release base prep script. (#13098)
Austin S. Hemmelgarn committed
Jun 14, 2022 at 07:19 UTC
cc816d29d8b8da478d6c3d17ae22894e44caf88f
1 file changed
+1
-1
.github/scripts/prepare-release-base.sh
+1
-1
@@ -153,7 +153,7 @@ elif [ "${EVENT_TYPE}" = 'minor' ] && [ "${EVENT_VERSION}" != "nightly" ]; then
153
echo "::set-output name=ref::${EVENT_VERSION}"
154
echo "::set-output name=type::release"
155
echo "::set-output name=branch::master"
156
- echo "::set-output name=new-branch:${branch_name}"
156
+ echo "::set-output name=new-branch::${branch_name}"
157
echo "::set-output name=version::$(tr -d 'v' < packaging/version)"
158
elif [ "${EVENT_TYPE}" = 'major' ] && [ "${EVENT_VERSION}" != "nightly" ]; then
159
echo "::notice::Preparing a major release build."