fastlane actions should be second-nature to you now, as we have leveraged many useful plugins that have made our lives a lot easier as developers, whether by interacting with testing platforms such as TestFlight and Hockey or incrementing our project build numbers and pushing new git commits, as we demonstrated in the last chapter. There are, in fact, two forms of action plugins that fastlane provides: built-in actions (https://docs.fastlane.tools/actions/#fastlane-actions) and third-party actions (https://docs.fastlane.tools/plugins/available-plugins/), with the difference being that for the latter, you will need to install explicitly in order to utilize.
Discovering new action plugins
build-in plugins
The plugins that...