Before we begin working with fastlane, it's important to point out where you can access the fastlane documentation. Make sure you bookmark docs.fastlane.tools (https://docs.fastlane.tools/)Â for future reference, as well as the project GitHub page at github.com/fastlane/fastlane, as they will both no doubt come in handy throughout this book as we work on our project. In particular, the following sub-sections will prove especially useful throughout this book:
- docs.fastlane.tools/actions: A list of built-in fastlane actions. You can also type fastlane actions in the Terminal to get a list of all the pre-built actions and their associated details, right in the Terminal.
- docs.fastlane.tools/codesigning/getting-started: A quick reminder page on how to work with provisioning profiles and certificates. Â
- docs.fastlane.tools/plugins/available-plugins: A list of all available plugins, some troubleshooting for popular plugins, and guidance on how to create your own plugins.
Additionally, you can also check out sample fastlane setups (https://github.com/fastlane/examples) from other companies, which you can refer to as you learn more about what each of the lanes and actions does and understand fastlane in greater detail.