passepartout-apple/scripts/local/build-app.sh
Davide De Rosa 9962401d74 Fix some issues in scripts
- Always use bash for consistent script behavior

- Replace deprecated set-output in GitHub workflows
2022-10-17 13:39:54 +02:00

9 lines
217 B
Bash
Executable File

#!/bin/bash
PLATFORM=$1
if [[ -z $PLATFORM ]]; then
echo "Platform required"
exit
fi
export GYM_OUTPUT_DIRECTORY="dist/$PLATFORM"
bundle exec fastlane --env $PLATFORM,beta,secret test_and_build_app test:false