diff --git a/scripts/local/build-app.sh b/scripts/local/build-app.sh new file mode 100755 index 00000000..e89068ba --- /dev/null +++ b/scripts/local/build-app.sh @@ -0,0 +1,7 @@ +#!/bin/sh +PLATFORM=$1 +if [[ -z $PLATFORM ]]; then + echo "Platform required" + exit +fi +bundle exec fastlane --env $PLATFORM,beta,secret create_archive diff --git a/scripts/local/review-app.sh b/scripts/local/review-app.sh new file mode 100644 index 00000000..498ca2c9 --- /dev/null +++ b/scripts/local/review-app.sh @@ -0,0 +1,11 @@ +#!/bin/sh +PLATFORM=$1 +if [[ -z $PLATFORM ]]; then + echo "Platform required" + exit +fi +export DELIVER_APP_VERSION=`ci/version-number.sh $PLATFORM` +export DELIVER_BUILD_NUMBER=`ci/build-number.sh $PLATFORM` +export DELIVER_FORCE="true" +bundle exec fastlane --env $PLATFORM,secret store_review add_id_info_uses_idfa:false + diff --git a/scripts/local/submit-app.sh b/scripts/local/submit-app.sh new file mode 100755 index 00000000..8a54f30c --- /dev/null +++ b/scripts/local/submit-app.sh @@ -0,0 +1,8 @@ +#!/bin/sh +PLATFORM=$1 +if [[ -z $PLATFORM ]]; then + echo "Platform required" + exit +fi +export PILOT_CHANGELOG=`ci/build-changelog.sh $PLATFORM` +bundle exec fastlane --env $PLATFORM,beta,secret store_beta