CI: Update iOS fastlane

This commit is contained in:
Krille Fear 2021-11-27 12:12:58 +01:00
parent afc9afb391
commit d84a6dce1a
3 changed files with 4 additions and 3 deletions

View File

@ -26,8 +26,8 @@ platform :ios do
config = File.read("../../pubspec.yaml")
version_name = config.match(re).captures[0]
increment_version_number(version_number: version_name)
#build_app(workspace: "Runner.xcworkspace", scheme: "Runner")
#upload_to_testflight
build_app(workspace: "Runner.xcworkspace", scheme: "Runner")
upload_to_testflight
end
end

View File

@ -7,6 +7,7 @@ import Foundation
import audioplayers
import file_selector_macos
import firebase_core
import flutter_local_notifications
import geolocator_apple
import package_info
@ -20,6 +21,7 @@ import wakelock_macos
func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) {
AudioplayersPlugin.register(with: registry.registrar(forPlugin: "AudioplayersPlugin"))
FileSelectorPlugin.register(with: registry.registrar(forPlugin: "FileSelectorPlugin"))
FLTFirebaseCorePlugin.register(with: registry.registrar(forPlugin: "FLTFirebaseCorePlugin"))
FlutterLocalNotificationsPlugin.register(with: registry.registrar(forPlugin: "FlutterLocalNotificationsPlugin"))
GeolocatorPlugin.register(with: registry.registrar(forPlugin: "GeolocatorPlugin"))
FLTPackageInfoPlugin.register(with: registry.registrar(forPlugin: "FLTPackageInfoPlugin"))

View File

@ -10,7 +10,6 @@ pod update
cd ..
flutter build ios --release
cd ios
bundle install
bundle update fastlane
bundle exec fastlane beta
cd ..