Last active
April 2, 2021 12:49
-
-
Save bbedward/ce9ca0571f24d03f1416cb5756ffdc09 to your computer and use it in GitHub Desktop.
Appditto Flutter+Fastlane+GitLab Tutorial
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
cd ../../ | |
if [ "$1" == "--clean" ] | |
then | |
echo "Running clean..." | |
flutter clean | |
else | |
echo "Skipping clean..." | |
fi | |
flutter build ios --release --no-codesign |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment