Created
May 31, 2021 04:48
-
-
Save potados99/2cc4982f940c2b69aea76d828cd44778 to your computer and use it in GitHub Desktop.
Deploy unbundled output to Code Push
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/bash | |
mkdir ./CodePush | |
react-native ram-bundle --platform ios \ | |
--entry-file index.js \ | |
--bundle-output ./CodePush/main.jsbundle \ | |
--assets-dest ./CodePush \ | |
--indexed-ram-bundle \ | |
--dev false | |
appcenter codepush release -a potados99/cafeteria-ios -d Staging -c ./CodePush -t 4.3 --disable-duplicate-release-error | |
rm -rf ./CodePush |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment