passepartout-apple/scripts/local/review-app.sh

12 lines
326 B
Bash
Raw Permalink Normal View History

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