From 403285e46fc936257f267a697beec9c4f410a01e Mon Sep 17 00:00:00 2001 From: Simon Fairbairn Date: Thu, 19 May 2022 08:32:25 +0100 Subject: [PATCH] Automatic fastlane Readme update --- fastlane/README.md | 55 +++++++++++++++++++++++++++++----------------- 1 file changed, 35 insertions(+), 20 deletions(-) diff --git a/fastlane/README.md b/fastlane/README.md index 79037b4..6c68a1b 100644 --- a/fastlane/README.md +++ b/fastlane/README.md @@ -1,25 +1,26 @@ fastlane documentation -================ +---- + # Installation Make sure you have the latest version of the Xcode command line tools installed: -``` +```sh xcode-select --install ``` -Install _fastlane_ using -``` -[sudo] gem install fastlane -NV -``` -or alternatively using `brew install fastlane` +For _fastlane_ installation instructions, see [Installing _fastlane_](https://docs.fastlane.tools/#installing-fastlane) # Available Actions + ## iOS + ### ios patch + +```sh +[bundle exec] fastlane ios patch ``` -fastlane ios patch -``` + This does the following: @@ -29,10 +30,13 @@ This does the following: - Ensures Cocoapods compatibility - Bumps the patch version + ### ios minor + +```sh +[bundle exec] fastlane ios minor ``` -fastlane ios minor -``` + This does the following: @@ -42,10 +46,13 @@ This does the following: - Ensures Cocoapods compatibility - Bumps the minor version + ### ios major + +```sh +[bundle exec] fastlane ios major ``` -fastlane ios major -``` + This does the following: @@ -55,19 +62,27 @@ This does the following: - Ensures Cocoapods compatibility - Bumps the major version + ### ios test -``` -fastlane ios test + +```sh +[bundle exec] fastlane ios test ``` + + ### ios submit_pod + +```sh +[bundle exec] fastlane ios submit_pod ``` -fastlane ios submit_pod -``` + Push the repo to remote and submits the Pod to the given spec repository. Do this after running update to run tests, bump versions, and commit changes. ---- -This README.md is auto-generated and will be re-generated every time [fastlane](https://fastlane.tools) is run. -More information about fastlane can be found on [fastlane.tools](https://fastlane.tools). -The documentation of fastlane can be found on [docs.fastlane.tools](https://docs.fastlane.tools). +This README.md is auto-generated and will be re-generated every time [_fastlane_](https://fastlane.tools) is run. + +More information about _fastlane_ can be found on [fastlane.tools](https://fastlane.tools). + +The documentation of _fastlane_ can be found on [docs.fastlane.tools](https://docs.fastlane.tools).