From 0c3bfc14f9dda29a53674931949c9da9b27f83ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Wed, 9 Jan 2019 16:17:45 +0100 Subject: [PATCH] fix renaming iOS release builds MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jakub SokoĊ‚owski --- ci/ios.groovy | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ci/ios.groovy b/ci/ios.groovy index 2b69648220..b90d46660f 100644 --- a/ci/ios.groovy +++ b/ci/ios.groovy @@ -33,7 +33,10 @@ def bundle(type) { } /* rename built file for uploads and archivization */ def pkg = '' - if (type == 'e2e') { + if (type == 'release') { + pkg = cmn.pkgFilename('release', 'ipa') + sh "cp status_appstore/StatusIm.ipa ${pkg}" + } else if (type == 'e2e') { pkg = cmn.pkgFilename('e2e', 'app.zip') sh "cp status-e2e/StatusIm.app.zip ${pkg}" } else if (type != 'testflight') {