Last active
October 20, 2018 12:21
-
-
Save flexbox/da9b92a94bef7873280cabcaa74d4fe4 to your computer and use it in GitHub Desktop.
React Native with expo SDK release script for iOS
This file contains hidden or 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/sh | |
read -p "=> Starting the standalone build for iOS: when ready, press [ENTER]" | |
echo '' | |
echo '====================' | |
echo 'Install dependencies' | |
echo '====================' | |
echo '' | |
yarn | |
echo '' | |
exp build:ios | |
echo '' | |
echo '=======================' | |
echo 'Download archive.ipa 🍏' | |
echo '=======================' | |
echo '' | |
APP_IPA = $(curl -o app.ipa “$(exp url:ipa)”) | |
echo $APP_IPA | |
open . | |
open /Applications/Xcode.app/Contents/Applications/Application\ Loader.app/ | |
echo '=> You can upload the .ipa with Application Loader' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment