2021-11-15 11:02:55 +08:00
|
|
|
fastlane documentation
|
2023-03-23 16:13:05 +08:00
|
|
|
----
|
|
|
|
|
2021-11-15 11:02:55 +08:00
|
|
|
# Installation
|
|
|
|
|
|
|
|
Make sure you have the latest version of the Xcode command line tools installed:
|
|
|
|
|
2023-03-23 16:13:05 +08:00
|
|
|
```sh
|
2021-11-15 11:02:55 +08:00
|
|
|
xcode-select --install
|
|
|
|
```
|
|
|
|
|
2023-03-23 16:13:05 +08:00
|
|
|
For _fastlane_ installation instructions, see [Installing _fastlane_](https://docs.fastlane.tools/#installing-fastlane)
|
2021-11-15 11:02:55 +08:00
|
|
|
|
|
|
|
# Available Actions
|
2023-03-23 16:13:05 +08:00
|
|
|
|
2021-11-15 11:02:55 +08:00
|
|
|
## iOS
|
2023-03-23 16:13:05 +08:00
|
|
|
|
2021-11-15 11:02:55 +08:00
|
|
|
### ios d
|
2023-03-23 16:13:05 +08:00
|
|
|
|
|
|
|
```sh
|
|
|
|
[bundle exec] fastlane ios d
|
2021-11-15 11:02:55 +08:00
|
|
|
```
|
2023-03-23 16:13:05 +08:00
|
|
|
|
2021-11-15 11:02:55 +08:00
|
|
|
1. 发布iOS Dubug ipa 到 firim 网站
|
2023-03-23 16:13:05 +08:00
|
|
|
|
2021-11-15 11:02:55 +08:00
|
|
|
### ios r
|
2023-03-23 16:13:05 +08:00
|
|
|
|
|
|
|
```sh
|
|
|
|
[bundle exec] fastlane ios r
|
2021-11-15 11:02:55 +08:00
|
|
|
```
|
2023-03-23 16:13:05 +08:00
|
|
|
|
2021-11-15 11:02:55 +08:00
|
|
|
2. 发布iOS Release ipa 到 firim 网站
|
2023-03-23 16:13:05 +08:00
|
|
|
|
2021-11-15 11:02:55 +08:00
|
|
|
### ios store
|
2023-03-23 16:13:05 +08:00
|
|
|
|
|
|
|
```sh
|
|
|
|
[bundle exec] fastlane ios store
|
2021-11-15 11:02:55 +08:00
|
|
|
```
|
2023-03-23 16:13:05 +08:00
|
|
|
|
2021-11-15 11:02:55 +08:00
|
|
|
3. 发布iOS Release ipa 到 苹果商店
|
2023-03-23 16:13:05 +08:00
|
|
|
|
2021-11-15 11:02:55 +08:00
|
|
|
### ios archiveAction
|
2023-03-23 16:13:05 +08:00
|
|
|
|
|
|
|
```sh
|
|
|
|
[bundle exec] fastlane ios archiveAction
|
2021-11-15 11:02:55 +08:00
|
|
|
```
|
2023-03-23 16:13:05 +08:00
|
|
|
|
2021-11-15 11:02:55 +08:00
|
|
|
4. 打包操作
|
2023-03-23 16:13:05 +08:00
|
|
|
|
2021-11-15 11:02:55 +08:00
|
|
|
### ios uploadToFirim
|
2023-03-23 16:13:05 +08:00
|
|
|
|
|
|
|
```sh
|
|
|
|
[bundle exec] fastlane ios uploadToFirim
|
2021-11-15 11:02:55 +08:00
|
|
|
```
|
2023-03-23 16:13:05 +08:00
|
|
|
|
2021-11-15 11:02:55 +08:00
|
|
|
5. 执行上传操作
|
2023-03-23 16:13:05 +08:00
|
|
|
|
2021-11-15 11:02:55 +08:00
|
|
|
### ios uploadAppleStore
|
2023-03-23 16:13:05 +08:00
|
|
|
|
|
|
|
```sh
|
|
|
|
[bundle exec] fastlane ios uploadAppleStore
|
2021-11-15 11:02:55 +08:00
|
|
|
```
|
2023-03-23 16:13:05 +08:00
|
|
|
|
2021-11-15 11:02:55 +08:00
|
|
|
6. 发布到 Apple Store
|
2023-03-23 16:13:05 +08:00
|
|
|
|
2021-11-15 11:02:55 +08:00
|
|
|
### ios updateProjectBuildNumber
|
2023-03-23 16:13:05 +08:00
|
|
|
|
|
|
|
```sh
|
|
|
|
[bundle exec] fastlane ios updateProjectBuildNumber
|
2021-11-15 11:02:55 +08:00
|
|
|
```
|
2023-03-23 16:13:05 +08:00
|
|
|
|
2021-11-15 11:02:55 +08:00
|
|
|
7. 用于更新 App 的 build Num 的方法
|
2023-03-23 16:13:05 +08:00
|
|
|
|
2021-11-15 11:02:55 +08:00
|
|
|
### ios upload_dSYM
|
2023-03-23 16:13:05 +08:00
|
|
|
|
|
|
|
```sh
|
|
|
|
[bundle exec] fastlane ios upload_dSYM
|
2021-11-15 11:02:55 +08:00
|
|
|
```
|
2023-03-23 16:13:05 +08:00
|
|
|
|
2021-11-15 11:02:55 +08:00
|
|
|
8. 上传符号表操作
|
2023-03-23 16:13:05 +08:00
|
|
|
|
2021-11-15 11:02:55 +08:00
|
|
|
### ios resigh
|
2023-03-23 16:13:05 +08:00
|
|
|
|
|
|
|
```sh
|
|
|
|
[bundle exec] fastlane ios resigh
|
2021-11-15 11:02:55 +08:00
|
|
|
```
|
2023-03-23 16:13:05 +08:00
|
|
|
|
|
|
|
|
2021-11-15 11:02:55 +08:00
|
|
|
|
|
|
|
### ios review
|
2023-03-23 16:13:05 +08:00
|
|
|
|
|
|
|
```sh
|
|
|
|
[bundle exec] fastlane ios review
|
2021-11-15 11:02:55 +08:00
|
|
|
```
|
|
|
|
|
|
|
|
|
2023-03-23 16:13:05 +08:00
|
|
|
|
2021-11-15 11:02:55 +08:00
|
|
|
----
|
|
|
|
|
|
|
|
This README.md is auto-generated and will be re-generated every time [_fastlane_](https://fastlane.tools) is run.
|
2023-03-23 16:13:05 +08:00
|
|
|
|
|
|
|
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).
|