Reputation: 1161
I've been using Fastlane for our build in Jenkins system but recently I've encountered a problem which I'm unable to resolve that.
Tested recreating provisioning profile, restarting process, updating fastlane & match & deliver & spaceship.
I'm using Xcode 8.2 and fastlane 2.4.0
Upvotes: 2
Views: 792
Reputation: 4982
I get the same error "Could not infer your app's version", as a workaround you could specify the version by adding app_version to your DeliverFile.md
app_version "1.1.0"
or commandline argument to deliver
fastlane deliver download_metadata --app_version "1.1.0"
Upvotes: 4