diff --git a/NotificationContent/Info.plist b/NotificationContent/Info.plist index 80cbbcd91c..1cdaba1530 100644 --- a/NotificationContent/Info.plist +++ b/NotificationContent/Info.plist @@ -17,7 +17,7 @@ CFBundlePackageType XPC! CFBundleShortVersionString - 5.5.1 + 5.5.2 CFBundleVersion ${BUILD_NUMBER} NSExtension diff --git a/NotificationService/Info.plist b/NotificationService/Info.plist index 18eceb0557..0a2090780e 100644 --- a/NotificationService/Info.plist +++ b/NotificationService/Info.plist @@ -17,7 +17,7 @@ CFBundlePackageType XPC! CFBundleShortVersionString - 5.5.1 + 5.5.2 CFBundleVersion ${BUILD_NUMBER} NSExtension diff --git a/Share/Info.plist b/Share/Info.plist index 2b77913fa3..67bfc0ef2c 100644 --- a/Share/Info.plist +++ b/Share/Info.plist @@ -17,7 +17,7 @@ CFBundlePackageType XPC! CFBundleShortVersionString - 5.5.1 + 5.5.2 CFBundleVersion ${BUILD_NUMBER} NSExtension diff --git a/SiriIntents/Info.plist b/SiriIntents/Info.plist index 9890849e7e..098b5fe079 100644 --- a/SiriIntents/Info.plist +++ b/SiriIntents/Info.plist @@ -17,7 +17,7 @@ CFBundlePackageType XPC! CFBundleShortVersionString - 5.5.1 + 5.5.2 CFBundleVersion ${BUILD_NUMBER} NSExtension diff --git a/Telegram-iOS/Info.plist b/Telegram-iOS/Info.plist index 3e2588102a..748e41988b 100644 --- a/Telegram-iOS/Info.plist +++ b/Telegram-iOS/Info.plist @@ -19,7 +19,7 @@ CFBundlePackageType APPL CFBundleShortVersionString - 5.5.1 + 5.5.2 CFBundleSignature ???? CFBundleURLTypes diff --git a/Watch/App/Info.plist b/Watch/App/Info.plist index b40b6bd78f..8b6e8ed762 100644 --- a/Watch/App/Info.plist +++ b/Watch/App/Info.plist @@ -17,7 +17,7 @@ CFBundlePackageType APPL CFBundleShortVersionString - 5.5.1 + 5.5.2 CFBundleVersion ${BUILD_NUMBER} UISupportedInterfaceOrientations diff --git a/Watch/Extension/Info.plist b/Watch/Extension/Info.plist index 251de38f75..7436dfeb74 100644 --- a/Watch/Extension/Info.plist +++ b/Watch/Extension/Info.plist @@ -17,7 +17,7 @@ CFBundlePackageType XPC! CFBundleShortVersionString - 5.5.1 + 5.5.2 CFBundleVersion ${BUILD_NUMBER} NSExtension diff --git a/Widget/Info.plist b/Widget/Info.plist index e2c70d7d60..b894767806 100644 --- a/Widget/Info.plist +++ b/Widget/Info.plist @@ -17,7 +17,7 @@ CFBundlePackageType XPC! CFBundleShortVersionString - 5.5.1 + 5.5.2 CFBundleVersion ${BUILD_NUMBER} NSExtension diff --git a/buildbox/build-telegram.sh b/buildbox/build-telegram.sh index 23e7a28f25..54c015be53 100644 --- a/buildbox/build-telegram.sh +++ b/buildbox/build-telegram.sh @@ -43,6 +43,10 @@ if [ "$BUILD_CONFIGURATION" == "hockeyapp" ] || [ "$BUILD_CONFIGURATION" == "app echo "TELEGRAM_BUILD_APPSTORE_PASSWORD is not set" exit 1 fi + if [ -z "$TELEGRAM_BUILD_APPSTORE_TEAM_NAME" ]; then + echo "TELEGRAM_BUILD_APPSTORE_TEAM_NAME is not set" + exit 1 + fi fi fi @@ -83,7 +87,7 @@ else fi scp -o LogLevel=ERROR -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -pr "$BUILDBOX_DIR/guest-build-telegram.sh" "$BUILDBOX_DIR/transient-data/source.tar" telegram@"$VM_IP": -ssh -o LogLevel=ERROR -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null telegram@"$VM_IP" -o ServerAliveInterval=60 -t "export TELEGRAM_BUILD_APPSTORE_PASSWORD=$TELEGRAM_BUILD_APPSTORE_PASSWORD; bash -l guest-build-telegram.sh $BUILD_CONFIGURATION" +ssh -o LogLevel=ERROR -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null telegram@"$VM_IP" -o ServerAliveInterval=60 -t "export TELEGRAM_BUILD_APPSTORE_PASSWORD=\"$TELEGRAM_BUILD_APPSTORE_PASSWORD\"; export TELEGRAM_BUILD_APPSTORE_TEAM_NAME=\"$TELEGRAM_BUILD_APPSTORE_TEAM_NAME\"; bash -l guest-build-telegram.sh $BUILD_CONFIGURATION" if [ "$BUILD_CONFIGURATION" == "verify" ]; then VERIFY_IPA="Telegram-Verify-Build.ipa" diff --git a/buildbox/guest-build-telegram.sh b/buildbox/guest-build-telegram.sh index fc4f1c31fc..ba7bc34620 100644 --- a/buildbox/guest-build-telegram.sh +++ b/buildbox/guest-build-telegram.sh @@ -8,7 +8,12 @@ elif [ "$1" == "appstore" ]; then echo "TELEGRAM_BUILD_APPSTORE_PASSWORD is not set" exit 1 fi + if [ -z "$TELEGRAM_BUILD_APPSTORE_TEAM_NAME" ]; then + echo "TELEGRAM_BUILD_APPSTORE_TEAM_NAME is not set" + exit 1 + fi FASTLANE_PASSWORD="$TELEGRAM_BUILD_APPSTORE_PASSWORD" + FASTLANE_ITC_TEAM_NAME="$TELEGRAM_BUILD_APPSTORE_TEAM_NAME" elif [ "$1" == "verify" ]; then FASTLANE_BUILD_CONFIGURATION="build_for_appstore" else @@ -49,4 +54,4 @@ echo "Unpacking files..." tar -xf "source.tar" cd "$SOURCE_PATH" -FASTLANE_PASSWORD="$FASTLANE_PASSWORD" fastlane "$FASTLANE_BUILD_CONFIGURATION" +FASTLANE_PASSWORD="$FASTLANE_PASSWORD" FASTLANE_ITC_TEAM_NAME="$FASTLANE_ITC_TEAM_NAME" fastlane "$FASTLANE_BUILD_CONFIGURATION"