集成Fastlane

This commit is contained in:
xuemh
2018-07-10 17:31:36 +08:00
parent c4de5175a1
commit 7cde036926
7 changed files with 233 additions and 1 deletions
+8
View File
@@ -0,0 +1,8 @@
app_identifier("com.shyuying.Ifish8") # The bundle identifier of your app
apple_id("fun@ifish7.com") # Your Apple email address
itc_team_id("118234974") # App Store Connect Team ID
team_id("WFX8GD5HFX") # Developer Portal Team ID
# For more information about the Appfile, see:
# https://docs.fastlane.tools/advanced/#appfile
+24
View File
@@ -0,0 +1,24 @@
# This file contains the fastlane.tools configuration
# You can find the documentation at https://docs.fastlane.tools
#
# For a list of all available actions, check out
#
# https://docs.fastlane.tools/actions
#
# For a list of all available plugins, check out
#
# https://docs.fastlane.tools/plugins/available-plugins
#
# Uncomment the line if you want fastlane to automatically update itself
# update_fastlane
default_platform(:ios)
platform :ios do
desc "Push a new beta build to TestFlight"
lane :beta do
build_app(scheme: "Ifish")
upload_to_testflight
end
end
+29
View File
@@ -0,0 +1,29 @@
fastlane documentation
================
# Installation
Make sure you have the latest version of the Xcode command line tools installed:
```
xcode-select --install
```
Install _fastlane_ using
```
[sudo] gem install fastlane -NV
```
or alternatively using `brew cask install fastlane`
# Available Actions
## iOS
### ios beta
```
fastlane ios beta
```
Push a new beta build to TestFlight
----
This README.md is auto-generated and will be re-generated every time [fastlane](https://fastlane.tools) is run.
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).