From 2ee8662bd137d61295fd9057d4f459d0cc982af8 Mon Sep 17 00:00:00 2001 From: Axel Navarro Date: Tue, 29 Dec 2020 08:57:05 -0300 Subject: [PATCH] fastlane: add page (#5034) --- pages/common/fastlane.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 pages/common/fastlane.md diff --git a/pages/common/fastlane.md b/pages/common/fastlane.md new file mode 100644 index 0000000000..4eda3f4f2e --- /dev/null +++ b/pages/common/fastlane.md @@ -0,0 +1,20 @@ +# fastlane + +> Build and release mobile applications from the command-line. +> More information: . + +- Build and sign the iOS application in the current directory: + +`fastlane run build_app` + +- Run `pod install` for the project in the current directory: + +`fastlane run cocoapods` + +- Delete the derived data from Xcode: + +`fastlane run clear_derived_data` + +- Remove the cache for pods: + +`fastlane run clean_cocoapods_cache`