Files
Jellify/scripts/ota-iOS.sh
Violet Caulfield 35359c2538 update workflow
2025-05-15 11:26:32 -05:00

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 ..