mirror of
https://github.com/passepartoutvpn/passepartout-apple.git
synced 2024-12-26 03:12:37 +00:00
9962401d74
- Always use bash for consistent script behavior - Replace deprecated set-output in GitHub workflows
9 lines
217 B
Bash
Executable File
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
|