mirror of
https://github.com/passepartoutvpn/passepartout-apple.git
synced 2025-01-22 16:42:09 +00:00
9 lines
208 B
Bash
Executable File
9 lines
208 B
Bash
Executable File
#!/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
|