From 88312e4df535edefc41b7a9b71c15c26353eb191 Mon Sep 17 00:00:00 2001 From: xmflsct Date: Sat, 10 Dec 2022 02:07:49 +0100 Subject: [PATCH] Fix missing comma --- fastlane/Fastfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fastlane/Fastfile b/fastlane/Fastfile index b75182a9..66d35884 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -151,7 +151,7 @@ lane :release do tag_name: GITHUB_RELEASE, description: "No changelog provided", commitish: git_branch, - is_prerelease: false + is_prerelease: false, upload_assets: ["#{File.expand_path('..', Dir.pwd)}/tooot-#{GITHUB_RELEASE}.apk"] ) end