update_fastlane¶
Makes sure fastlane-tools are up-to-date when running fastlane
This action will update fastlane to the most recent version - major version updates will not be performed automatically, as they might include breaking changes. If an update was performed, fastlane will be restarted before the run continues.
If you are using rbenv or rvm, everything should be good to go. However, if you are using the system's default ruby, some additional setup is needed for this action to work correctly. In short, fastlane needs to be able to access your gem library without running insudo
mode.
The simplest possible fix for this is putting the following lines into your~/.bashrc
or~/.zshrc
file:
export GEM_HOME=~/.gems
export PATH=$PATH:~/.gems/bin
After the above changes, restart your terminal, then run
mkdir $GEM_HOME
to create the new gem directory. After this, you're good to go!
Recommended usage of theupdate_fastlane
action is at the top inside of thebefore_all
block, before running any other action.
update_fastlane | |
---|---|
Supported platforms | ios, android, mac |
Author | @milch, @KrauseFx |
1 Example¶
before_all do
update_fastlane
# ...
end
Parameters¶
Key | Description | Default |
---|---|---|
nightly |
Opt-in to install and use nightly fastlane builds | false |
no_update |
Don't update during this run. This is used internally | false |
tools |
DEPRECATED! Comma separated list of fastlane tools to update (e.g. fastlane,deliver,sigh ) |
* = default value is dependent on the user's system
To show the documentation in your terminal, run
fastlane action update_fastlane