Appuploader Command Line Version Tutorial
The commands for uploading and publishing IPA files to the App Store via the command line on Windows, Linux, and Mac are as follows:
appuploader_cli -f <ipa_file> -u <username> -p <password> -c <channel id>
Example:
appuploader_cli -u [email protected] -p xxxx-xxxx-xxxx-xxxx -c 2 -f mygame.ipa

  • -u specifies the Apple Developer account.
  • -p specifies the app-specific password for uploading.
  • -c specifies the upload channel, supporting values 1 and 2.
  • -f specifies the file path of the IPA to be uploaded.

Appuploader currently supports the following channel values:

  • 1 represents the old channel, which is stable.
  • 2 represents the new channel, which is more convenient and efficient.

The appuploader_cli file is located in the downloaded Appuploader compressed package. For the Mac version, it is in the runtime directory within the .app file.

The command line version is more efficient and stable than the GUI version and can be easily integrated into existing systems.