Skip to content

Instantly share code, notes, and snippets.

@sajoku
Forked from keith/testflight.sh
Created June 14, 2017 05:17
Show Gist options
  • Save sajoku/547a280fb07221d5c9eb9339eff4784a to your computer and use it in GitHub Desktop.
Save sajoku/547a280fb07221d5c9eb9339eff4784a to your computer and use it in GitHub Desktop.
Upload an ipa to testflight using altool
#!/bin/bash
set -e
set -u
altool="$(dirname "$(xcode-select -p)")/Applications/Application Loader.app/Contents/Frameworks/ITunesSoftwareService.framework/Support/altool"
ipa="path/to/foo.ipa"
echo "Validating app..."
time "$altool" --validate-app --type ios --file "$ipa" --username "$ITC_USER" --password "$ITC_PASSWORD"
echo "Uploading app to iTC..."
time "$altool" --upload-app --type ios --file "$ipa" --username "$ITC_USER" --password "$ITC_PASSWORD"
@ankushkushwaha
Copy link

You saved my day! Thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment