Skip to content

Instantly share code, notes, and snippets.

@keith
Last active March 7, 2025 06:21
Show Gist options
  • Save keith/5b5f61f4cc690aec403afd92aab020c3 to your computer and use it in GitHub Desktop.
Save keith/5b5f61f4cc690aec403afd92aab020c3 to your computer and use it in GitHub Desktop.
Upload an ipa to testflight using altool
#!/bin/bash
set -euo pipefail
xcrun altool --upload-app --type ios --file "path/to/foo.ipa" --username "$ITC_USER" --password "$ITC_PASSWORD"
@keith
Copy link
Author

keith commented Sep 28, 2020

We've seen that before intermittently. You should rerun later or check your auth credentials.

@omidraha
Copy link

What are usernane and password values ?

And Where can I find them?

https://help.apple.com/app-store-connect/#/devb1c185036

@keith
Copy link
Author

keith commented Aug 15, 2021

It's the ones you login to the developer portal with

@jessicatarra
Copy link

Is there a way to use a script to upload to appstore?

@keith
Copy link
Author

keith commented Nov 8, 2021

This pretty much does that, it just requires you to submit it manually still (or you could use the App Store Connect API) for that piece

@gindemit
Copy link

Hey @keith thanks for the script. Do you know any command to submit uploaded ipa file for TestFlight review?

@keith
Copy link
Author

keith commented Jun 10, 2022

@khindemit you can use the App Store connect api for that

@villimin
Copy link

villimin commented Feb 8, 2023

is there a way to set build version in the altool?

@MartinDelille
Copy link

@villimin I personally use a git tag for the version.

@ios-nexlab
Copy link

I've used this command but receiving the Appstore Connect's email message: "ITMS-90426: Invalid Swift Support - The SwiftSupport folder is missing. Rebuild your app using the current public (GM) version of Xcode and resubmit it."

@keith
Copy link
Author

keith commented Jul 11, 2023

I've used this command but receiving the Appstore Connect's email message: "ITMS-90426: Invalid Swift Support - The SwiftSupport folder is missing. Rebuild your app using the current public (GM) version of Xcode and resubmit it."

that sounds unrelated to this tool

@Kolahzary
Copy link

--upload-app is deprecated in the new versions

usage: altool --upload-package <file> --type <platform> --asc-public-id <id> --apple-id <id>
                  --bundle-version <version> --bundle-short-version-string <string>
                  --bundle-id <id>
                  {-u <username> [-p <password>] | --apiKey <api_key> --apiIssuer <issuer_id>}
       altool --validate-app -f <file> -t <platform>
                  {-u <username> [-p <password>] | --apiKey <api_key> --apiIssuer <issuer_id>}
       altool --list-apps
                  {-u <username> [-p <password>] | --apiKey <api_key> --apiIssuer <issuer_id>}
       altool --list-providers
                  {-u <username> [-p <password>] | --apiKey <api_key> --apiIssuer <issuer_id>}
       altool --store-password-in-keychain-item <keychain_item_name> -u <username> -p <password>
                  [--keychain <filename> | --sync]
       altool --upload-hosted-content <file> --sku <sku> --type <platform> --product-id <id> --asc-public-id <id>
                  {-u <username> [-p <password>] | --apiKey <api_key> --apiIssuer <issuer_id>} [DEPRECATED]
       altool --upload-app -f <file> -t <platform>
                  {-u <username> [-p <password>] | --apiKey <api_key> --apiIssuer <issuer_id>} [DEPRECATED]

NOTE: altool no longer supports notarization. Use notarytool to notarize apps.

@zhao0
Copy link

zhao0 commented Mar 7, 2025

use --validate-app instead

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