mirror of
https://github.com/passepartoutvpn/passepartout-apple.git
synced 2025-01-31 13:02:11 +00:00
Add local scripts for main CI actions
This commit is contained in:
parent
a18f9cad32
commit
8fa31b0323
7
scripts/local/build-app.sh
Executable file
7
scripts/local/build-app.sh
Executable 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
|
11
scripts/local/review-app.sh
Normal file
11
scripts/local/review-app.sh
Normal 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
8
scripts/local/submit-app.sh
Executable 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
|
Loading…
Reference in New Issue
Block a user