mirror of
https://github.com/Jellify-Music/App.git
synced 2026-01-24 03:58:45 -06:00
Implements OTA updates, fetched via GitHub from our `App-Bundles` repository All Typescript changes can be delivered this way All native changes will need to go through the traditional `publish-beta` workflow, which is now run manually
16 lines
298 B
Bash
16 lines
298 B
Bash
cd ios
|
|
rm -rf App-Bundles
|
|
git clone https://github.com/Jellify-Music/App-Bundles.git
|
|
cd App-Bundles
|
|
git checkout iOS
|
|
rm -rf Readme.md
|
|
cd ../..
|
|
yarn createBundle:ios
|
|
cd ios/App-Bundles
|
|
git add .
|
|
git commit -m "OTA-Update - $(date +'%b %d %H:%M')"
|
|
git push origin head
|
|
cd ..
|
|
rm -rf App-Bundles
|
|
cd ..
|