← 返回命令列表

Linux command

fastlane 命令

文本

复制后可按需替换文件名、目录或参数。

常用示例

Initialize Fastlane

fastlane init

Run a lane

fastlane [lane_name]

Build and test iOS app

fastlane ios test

Deploy to App Store

fastlane release

Deploy to TestFlight

fastlane beta

List available actions

fastlane actions

List available lanes

fastlane lanes

说明

fastlane automates iOS and Android development tasks including building, testing, code signing, and releasing apps to the App Store and Google Play. The tool provides a Ruby-based DSL for defining workflows (called "lanes") that chain together actions. It handles complex tasks like certificate management, screenshot generation, beta distribution, and store submissions. fastlane integrates with tools like xcodebuild, Gradle, gym, match, and deliver to provide end-to-end automation for mobile development and release processes.

参数

--verbose
Enable verbose output.
--env _environment_
Load environment-specific config.

FAQ

What is the fastlane command used for?

fastlane automates iOS and Android development tasks including building, testing, code signing, and releasing apps to the App Store and Google Play. The tool provides a Ruby-based DSL for defining workflows (called "lanes") that chain together actions. It handles complex tasks like certificate management, screenshot generation, beta distribution, and store submissions. fastlane integrates with tools like xcodebuild, Gradle, gym, match, and deliver to provide end-to-end automation for mobile development and release processes.

How do I run a basic fastlane example?

Run `fastlane init` in a terminal, then adjust file names, paths, flags, or remote targets for your system.

What does --verbose do in fastlane?

Enable verbose output.