From 15e77c5a5bf4f0a6dd59b15c56827de66f07dfc0 Mon Sep 17 00:00:00 2001 From: Alexander Borsuk Date: Tue, 3 Aug 2021 18:07:53 +0200 Subject: [PATCH] [ios] Manual tagging of uploaded builds Signed-off-by: Alexander Borsuk --- iphone/upload_to_appstore.sh | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/iphone/upload_to_appstore.sh b/iphone/upload_to_appstore.sh index 4ff22be59b..7c03b59a0c 100755 --- a/iphone/upload_to_appstore.sh +++ b/iphone/upload_to_appstore.sh @@ -60,9 +60,7 @@ xcodebuild -exportArchive \ -exportOptionsPlist "$PLIST" -# Tag and push on successful upload. -# Note0: Requires write access to the repo. -# Note1: Remote 'origin' should be organicmaps git repo. -TAG="$IOS_VERSION-$NUMBER_OF_COMMITS_ON_THAT_DAY" -git tag "$TAG" -git push origin "$TAG" +echo "Build was successfully uploaded! Please don't forget to tag it with release notes using:" +TAG="$IOS_VERSION-$NUMBER_OF_COMMITS_ON_THAT_DAY-ios" +echo "git tag -m $TAG" +echo "git push origin $TAG"