Last active
August 29, 2015 14:22
-
-
Save mekanics/509d72916863c72f1ab9 to your computer and use it in GitHub Desktop.
Push your app to iTunesConnect. also useful for CI jobs...
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 | |
ln -s "/Applications/Xcode.app/Contents/Applications/Application Loader.app/Contents/Frameworks/ITunesSoftwareService.framework/Support/altool" /usr/local/bin/altool | |
ln -s "/Applications/Xcode.app/Contents/Applications/Application Loader.app/Contents/itms" /usr/local/bin/itms #itms is needed, otherwise altool will not work correctly |
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 | |
cd DerivedData | |
altool --upload-app -f `find . -name "*.ipa" -exec stat -f'%N' {} +|sort -rn | head -n1` -u [your-AppleID] -p @keychain:[AppleID-KeyName-in-the-keychain] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment