2021-11-12 08:39:05 +00:00
|
|
|
#!/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"
|
2021-12-03 14:31:19 +00:00
|
|
|
bundle exec fastlane --env $PLATFORM,secret deliver_review add_id_info_uses_idfa:false
|
2021-11-12 08:39:05 +00:00
|
|
|
|