安装rvm(ruby版本管理软件)
$ curl -sSL https://get.rvm.io | bash -s stable
安装ruby
$ rvm install 2.3.0
$ source ~/.rvm/scripts/rvm
创建oschina账号(git协议管理cert证书)
- 注册账号git.oschina.net
- 生成并配置
SSH
公钥证书(怎样生成公钥) - 多ssh配置
- 把你的账号告诉我
安装fastlane
$ sudo gem install fastlane --verbose
打包发布
-
更新App版本号(
testflight
使用小版本号,如:1.2.1/1.2.2;;App Store
使用大版本号,如:1.2.0/1.3.0) - 在
Xcode
中选择证书(mach AppStore com.isoftstone.*)
// 发布到testflight
$ fastlane ios testflight comments:"xxxxx"
// 发布到app store
$ fastlane ios appstore comments:"xxxxx"