diff --git a/buildbox/guest-build-telegram.sh b/buildbox/guest-build-telegram.sh index fff0441f16..4404ad9b4e 100644 --- a/buildbox/guest-build-telegram.sh +++ b/buildbox/guest-build-telegram.sh @@ -13,6 +13,8 @@ elif [ "$1" == "testinghockeyapp-local" ]; then CERTS_PATH="$HOME/codesigning_data/certs/enterprise" elif [ "$1" == "appstore" ]; then CERTS_PATH="$HOME/codesigning_data/certs/distribution" +elif [ "$1" == "appstore-development" ]; then + CERTS_PATH="$HOME/codesigning_data/certs/development" elif [ "$1" == "verify" ]; then CERTS_PATH="$HOME/codesigning_data/certs/distribution" else @@ -81,7 +83,7 @@ security import "build-system/AppleWWDRCAG3.cer" -k "$MY_KEYCHAIN" -P "" -T /usr security set-key-partition-list -S apple-tool:,apple: -k "$MY_KEYCHAIN_PASSWORD" "$MY_KEYCHAIN" -if [ "$1" == "hockeyapp" ] || [ "$1" == "appcenter-experimental" ] || [ "$1" == "appcenter-experimental-2" ] || [ "$1" == "App Store-development" ]; then +if [ "$1" == "hockeyapp" ] || [ "$1" == "appcenter-experimental" ] || [ "$1" == "appcenter-experimental-2" ] || [ "$1" == "appstore-development" ]; then APP_CONFIGURATION="release_arm64" elif [ "$1" == "appstore" ]; then APP_CONFIGURATION="release_universal"