From 5a1ff010f3496cce3468c222739d0ee77edcc612 Mon Sep 17 00:00:00 2001 From: Christian Hoffmann Date: Tue, 26 Apr 2022 21:57:08 +0200 Subject: [PATCH] Autobuild: Fix iOS artifact name The file is currently named *Unsigned1.ipa. The 1 doesn't belong there and has wrongfully been added as part of the refactoring in f460f5ce276d8907e0784e7993c9532b72daa30f. --- .github/autobuild/ios.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/autobuild/ios.sh b/.github/autobuild/ios.sh index a9f7ace3eb..7075baacbd 100755 --- a/.github/autobuild/ios.sh +++ b/.github/autobuild/ios.sh @@ -37,7 +37,7 @@ build_app_as_ipa() { } pass_artifact_to_job() { - local artifact="jamulus_${JAMULUS_BUILD_VERSION}_iOSUnsigned${ARTIFACT_SUFFIX:-1}.ipa" + local artifact="jamulus_${JAMULUS_BUILD_VERSION}_iOSUnsigned${ARTIFACT_SUFFIX:-}.ipa" echo "Moving build artifact to deploy/${artifact}" mv ./deploy/Jamulus.ipa "./deploy/${artifact}" echo "::set-output name=artifact_1::${artifact}"