123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- default_platform(:ios)
- platform :ios do
- desc "测试环境上传到蒲公英"
-
- lane :dev do
-
- gym(
-
- clean: true,
-
- output_directory: '/Volumes/Data/IPA/TestIPA/'++ Time.new.strftime("%Y-%m-%d %H-%M-%S"),
-
- output_name: 'FulltimeEmployer',
-
-
-
-
-
- scheme: "Runner",
-
- configuration: 'Release',
-
- include_bitcode: false,
-
- include_symbols: true,
-
- export_method: 'development',
-
- export_xcargs: '-allowProvisioningUpdates'
- )
-
- pgyer(api_key:'12345678', update_description: "fastlane自动打包")
-
- notification(app_icon: "./fastlane/icon.png", title: "manager", subtitle: "测试环境打包成功,已导出安装包", message: "")
- end
- end
|