From aa6fe41479cc7a88bb8f54ab9dea4c3f9fa670b3 Mon Sep 17 00:00:00 2001 From: Jae Kim Date: Tue, 2 May 2023 12:14:32 -0700 Subject: [PATCH] testing --- Scripts/run_release.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Scripts/run_release.sh b/Scripts/run_release.sh index de6f1a87..fcce035f 100755 --- a/Scripts/run_release.sh +++ b/Scripts/run_release.sh @@ -19,6 +19,8 @@ function prep_workspace { function release_github { LAST_RELEASE=$(git describe --abbrev=0 --tags) + echo ">>> $LAST_RELEASE :: $VERSION" + if [[ ${LAST_RELEASE} == "v${VERSION}" ]]; then echo "${LAST_RELEASE} tag exists already (probably created while in the current release process). Skipping..." return @@ -56,6 +58,10 @@ function release_cocoapods { printf "\n\nPushing podspecs to COCOAPODS.ORG .\n"; for (( i = 0; i < ${number_pods}; i++ )); do + + # TESTING + COCOAPODS_TRUNK_TOKEN=123 + podname=${pods[i]}; printf "Pushing the ${podname} pod to COCOAPODS.ORG .\n" pod _${COCOAPODS_VERSION}_ trunk push --allow-warnings ${podname}.podspec