Merge branch 'krille/update-ios-fastlane' into 'main'

CI: Update iOS fastlane

See merge request famedly/fluffychat!589
This commit is contained in:
Krille Fear 2021-11-27 10:07:59 +00:00
commit 227e8ce0eb
2 changed files with 12 additions and 3 deletions

View File

@ -18,9 +18,16 @@ default_platform(:ios)
platform :ios do
desc "Push a new beta build to TestFlight"
lane :beta do
increment_build_number(xcodeproj: "Runner.xcodeproj")
build_app(workspace: "Runner.xcworkspace", scheme: "Runner")
upload_to_testflight
increment_build_number(
xcodeproj: "Runner.xcodeproj",
build_number: latest_testflight_build_number + 1
)
re = /version:\s([0-9]*\.[0-9]*\.[0-9]*)\+[0-9]*/i
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
end
end

View File

@ -3,6 +3,8 @@ git apply ./scripts/enable-android-google-services.patch
flutter clean
flutter pub get
cd ios
rm -rf Pods
rm Podfile.lock
pod install
pod update
cd ..