Add local scripts for main CI actions
This commit is contained in:
parent
a18f9cad32
commit
8fa31b0323
|
@ -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
|
|
@ -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
|
||||||
|
|
|
@ -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
|
Loading…
Reference in New Issue