From f7f9c916ba225c9d2b7ea2af2e7ab6e8cadce76d Mon Sep 17 00:00:00 2001 From: Carson McManus Date: Thu, 29 Jun 2023 17:59:16 -0400 Subject: [PATCH] revert changes to release script --- scripts/full-release.sh | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/scripts/full-release.sh b/scripts/full-release.sh index 19f66be..6b70d5f 100755 --- a/scripts/full-release.sh +++ b/scripts/full-release.sh @@ -66,7 +66,7 @@ fi if [[ $SKIP_CRATE_PUBLISH == true ]]; then params+=(--no-publish) fi -cargo smart-release --update-crates-index --no-changelog --no-publish --no-push "${params[@]}" +cargo smart-release --update-crates-index --no-changelog --no-publish "${params[@]}" #echo "Verify that the publish succeeded, and Press any key to continue..." # read -n 1 -s -r @@ -92,10 +92,6 @@ if [[ "v$RAW_VERSION" != "v$TAGGED_VERSION" ]]; then fi VERSION="v$RAW_VERSION" -if [[ $DRY_RUN == false ]]; then - git push -fi - if [[ $DRY_RUN == false ]]; then if [[ $(gh release list | grep -i "Draft" | grep -i "$VERSION" && echo "true" || echo "false") == "true" ]]; then gh release delete --yes "$VERSION"