Add local scripts for main CI actions

This commit is contained in:
Davide De Rosa 2021-11-12 09:39:05 +01:00
parent a18f9cad32
commit 8fa31b0323
3 changed files with 26 additions and 0 deletions

7
scripts/local/build-app.sh Executable file
View File

@ -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

View File

@ -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

8
scripts/local/submit-app.sh Executable file
View File

@ -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