mirror of
https://github.com/passepartoutvpn/passepartout-apple.git
synced 2025-02-07 16:32:04 +00:00
- Always use bash for consistent script behavior - Replace deprecated set-output in GitHub workflows
8 lines
173 B
Bash
Executable File
8 lines
173 B
Bash
Executable File
#!/bin/bash
|
|
PLATFORM=$1
|
|
if [[ -z $PLATFORM ]]; then
|
|
echo "Platform required"
|
|
exit
|
|
fi
|
|
bundle exec fastlane --env $PLATFORM,beta,secret test_and_build_app build:false
|