mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-24 04:59:26 +01:00
Merge branch 'krille/update-ios-fastlane' into 'main'
CI: Update iOS fastlane See merge request famedly/fluffychat!589
This commit is contained in:
commit
227e8ce0eb
@ -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
|
||||
|
||||
|
@ -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 ..
|
||||
|
Loading…
Reference in New Issue
Block a user