Skip to content

Instantly share code, notes, and snippets.

@potados99
Created May 31, 2021 04:48
Show Gist options
  • Save potados99/2cc4982f940c2b69aea76d828cd44778 to your computer and use it in GitHub Desktop.
Save potados99/2cc4982f940c2b69aea76d828cd44778 to your computer and use it in GitHub Desktop.
Deploy unbundled output to Code Push
#!/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