Always upload iOS release jobs to TestFlight

Signed-off-by: Igor Mandrigin <i@mandrigin.ru>
This commit is contained in:
Igor Mandrigin 2018-12-21 13:19:52 +01:00
parent c8e5fd6a9c
commit 5ff90c3b14
No known key found for this signature in database
GPG Key ID: 4A0EDDE26E66BC8B
1 changed files with 4 additions and 4 deletions

View File

@ -7,10 +7,10 @@ def plutil(name, value) {
def compile(type = 'nightly') {
def target
switch (type) {
case 'release': target = 'adhoc'; break;
case 'testflight': target = 'release'; break;
case 'e2e': target = 'e2e'; break;
default: target = 'nightly';
case 'release': target = 'release'; break;
case 'testflight': target = 'release'; break;
case 'e2e': target = 'e2e'; break;
default: target = 'nightly';
}
/* configure build metadata */
plutil('CFBundleShortVersionString', common.version())