Skip to content

Instantly share code, notes, and snippets.

@flexbox
Last active October 20, 2018 12:21
Show Gist options
  • Save flexbox/da9b92a94bef7873280cabcaa74d4fe4 to your computer and use it in GitHub Desktop.
Save flexbox/da9b92a94bef7873280cabcaa74d4fe4 to your computer and use it in GitHub Desktop.
React Native with expo SDK release script for iOS
#!/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