From 7a07a6e437dbeffb804f53a04cec7e131debc3fe Mon Sep 17 00:00:00 2001 From: Artur Souza Date: Fri, 6 Dec 2024 14:02:21 -0800 Subject: [PATCH] Fix typo crashing release script. (#1173) Signed-off-by: Artur Souza --- .github/scripts/create-release.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/scripts/create-release.sh b/.github/scripts/create-release.sh index e32ddb39b..9fd16711b 100755 --- a/.github/scripts/create-release.sh +++ b/.github/scripts/create-release.sh @@ -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 @@ -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." \ No newline at end of file