Fix missing .ipa/.pkg in local script
This commit is contained in:
parent
b00a7a8ade
commit
fd918aa4a2
|
@ -4,5 +4,10 @@ if [[ -z $PLATFORM ]]; then
|
|||
echo "Platform required"
|
||||
exit
|
||||
fi
|
||||
if [[ $PLATFORM == "ios" ]]; then
|
||||
export PILOT_IPA="dist/ios/Passepartout.ipa"
|
||||
else
|
||||
export PILOT_PKG="dist/mac/Passepartout.pkg"
|
||||
fi
|
||||
export PILOT_CHANGELOG=`ci/build-changelog.sh $PLATFORM`
|
||||
bundle exec fastlane --env $PLATFORM,beta,secret store_beta
|
||||
|
|
Loading…
Reference in New Issue