From 8f2b72c303462bf7e1ba878bad436005b4fd40d3 Mon Sep 17 00:00:00 2001 From: Zhiyuan Zheng Date: Mon, 31 May 2021 00:09:13 +0200 Subject: [PATCH] Fix fastlane Patch update do not need to build native apps --- fastlane/Fastfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fastlane/Fastfile b/fastlane/Fastfile index ba915952..7298ff94 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -197,7 +197,7 @@ private_lane :build_android do end lane :build do - releaseExists = get_github_release(url: GITHUB_REPO, version: GITHUB_RELEASE, api_token: ENV['GH_PAT_GET_RELEASE']) + releaseExists = get_github_release(url: GITHUB_REPO, version: "v#{VERSION}", api_token: ENV['GH_PAT_GET_RELEASE']) if releaseExists puts("Release #{GITHUB_RELEASE} exists. Continue with building React Native only.") else