From ddc0a465d5179b8f32b82d4c4da20decff322454 Mon Sep 17 00:00:00 2001 From: Stylianos Tzouvaras Date: Tue, 3 Dec 2024 14:21:46 +0200 Subject: [PATCH] Correction for tag pushing fastlane --- fastlane/Fastfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fastlane/Fastfile b/fastlane/Fastfile index 941c3862..896294e1 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -130,9 +130,9 @@ platform :ios do desc "Upload tag to remote repo" lane :upload_tag do |values| remoteUrl = values[:remoteUrl] - tagVersion = values[:tagVersion] + tag = values[:tag] sh("git remote set-url origin #{remoteUrl}") - push_git_tags(tag: tagVersion) + push_git_tags(tag: tag) end desc "Reset version and build number to default"