baseline for this branch

This commit is contained in:
Matthew Raymer
2025-04-06 05:41:12 +00:00
parent 861d0c995e
commit 2ae2595525
3 changed files with 143 additions and 90 deletions

22
ios/fastlane/Fastfile Normal file
View File

@@ -0,0 +1,22 @@
default_platform(:ios)
platform :ios do
desc "Build and deploy iOS app"
lane :beta do
build_ios_app(
scheme: "App",
workspace: "App.xcworkspace",
export_method: "app-store"
)
upload_to_testflight
end
lane :release do
build_ios_app(
scheme: "App",
workspace: "App.xcworkspace",
export_method: "app-store"
)
upload_to_app_store
end
end