Skip to content

Commit

Permalink
Fix typo crashing release script. (#1173)
Browse files Browse the repository at this point in the history
Signed-off-by: Artur Souza <[email protected]>
  • Loading branch information
artursouza authored Dec 6, 2024
1 parent 1b37a1c commit 7a07a6e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/scripts/create-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,12 @@ if [ "$VARIANT" = "SNAPSHOT" ]; then
git checkout -b $branch_name
${script_dir}/update_sdk_version.sh $REL_VERSION
git clean -xdf
git commit -s -m "Update master version to ${$REL_VERSION}" -a
git commit -s -m "Update master version to ${REL_VERSION}" -a
git push origin $branch_name
gh pr create --repo ${GITHUB_REPOSITORY} \
--base master \
--title "Update master version to ${$REL_VERSION}" \
--body "Update master version to ${$REL_VERSION}"
--title "Update master version to ${REL_VERSION}" \
--body "Update master version to ${REL_VERSION}"
echo "Done."
exit 0
elif [ "$VARIANT" = "rc" ]; then
Expand Down Expand Up @@ -114,8 +114,8 @@ if [ "$VARIANT" = "" ]; then
git push origin $branch_name
gh pr create --repo ${GITHUB_REPOSITORY} \
--base master \
--title "Update master docs for ${$REL_VERSION} release" \
--body "Update master docs for ${$REL_VERSION} release"
--title "Update master docs for ${REL_VERSION} release" \
--body "Update master docs for ${REL_VERSION} release"
fi

echo "Done."

0 comments on commit 7a07a6e

Please sign in to comment.