1

Is there a way to create a new iOS app version for an already existing app in iTunes Connect using fastlane?

I tried using the following produce command:

produce create -a "com.somebundleidentifier" -q "My App Name" -u test@example.com -b XXXXXX -d -z 6.2.4

But I get back:

[iTC] App 'com.somebundleidentifier' already exists (983959158), nothing to do on iTunes Connect
Hodson
  • 3,438
  • 1
  • 23
  • 51

1 Answers1

1

It can be done by using deliver when you upload the ipa.

deliver --ipa "$ipa" -z 6.2.4 -u test@example.com
Hodson
  • 3,438
  • 1
  • 23
  • 51