Skip to content

Commit 7a07a6e

Browse files
authored
Fix typo crashing release script. (#1173)
Signed-off-by: Artur Souza <asouza.pro@gmail.com>
1 parent 1b37a1c commit 7a07a6e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/scripts/create-release.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,12 @@ if [ "$VARIANT" = "SNAPSHOT" ]; then
4242
git checkout -b $branch_name
4343
${script_dir}/update_sdk_version.sh $REL_VERSION
4444
git clean -xdf
45-
git commit -s -m "Update master version to ${$REL_VERSION}" -a
45+
git commit -s -m "Update master version to ${REL_VERSION}" -a
4646
git push origin $branch_name
4747
gh pr create --repo ${GITHUB_REPOSITORY} \
4848
--base master \
49-
--title "Update master version to ${$REL_VERSION}" \
50-
--body "Update master version to ${$REL_VERSION}"
49+
--title "Update master version to ${REL_VERSION}" \
50+
--body "Update master version to ${REL_VERSION}"
5151
echo "Done."
5252
exit 0
5353
elif [ "$VARIANT" = "rc" ]; then
@@ -114,8 +114,8 @@ if [ "$VARIANT" = "" ]; then
114114
git push origin $branch_name
115115
gh pr create --repo ${GITHUB_REPOSITORY} \
116116
--base master \
117-
--title "Update master docs for ${$REL_VERSION} release" \
118-
--body "Update master docs for ${$REL_VERSION} release"
117+
--title "Update master docs for ${REL_VERSION} release" \
118+
--body "Update master docs for ${REL_VERSION} release"
119119
fi
120120

121121
echo "Done."

0 commit comments

Comments
 (0)