From 25a5aeee80890b9ac5c41894e2b60a11dc62cd51 Mon Sep 17 00:00:00 2001 From: Hwee-Boon Yar Date: Tue, 12 Jul 2022 13:25:21 +0800 Subject: [PATCH] Rename fastlane lane to `upload` to avoid name collison: "Name of the lane 'testflight' is already taken by the action named 'testflight' #4964 --- fastlane/Fastfile | 4 ++-- fastlane/README.md | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/fastlane/Fastfile b/fastlane/Fastfile index 36d5a9c79..d7e29a09e 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -65,8 +65,8 @@ platform :ios do # You can define as many lanes as you want - desc "Upload a build for TestFlight" - lane :testflight do + desc "Upload a build for TestFlight and submission" + lane :upload do cocoapods(use_bundle_exec: true) build_app(workspace: "AlphaWallet.xcworkspace", scheme: "AlphaWallet", diff --git a/fastlane/README.md b/fastlane/README.md index a45770e1c..7d72816e4 100644 --- a/fastlane/README.md +++ b/fastlane/README.md @@ -47,13 +47,13 @@ Screenshots -### ios testflight +### ios upload ```sh -[bundle exec] fastlane ios testflight +[bundle exec] fastlane ios upload ``` -Upload a build for TestFlight +Upload a build for TestFlight and submission ----