diff --git a/frontend/ios/fastlane/Fastfile b/frontend/ios/fastlane/Fastfile index f1c8b14..43a1ba4 100644 --- a/frontend/ios/fastlane/Fastfile +++ b/frontend/ios/fastlane/Fastfile @@ -74,7 +74,7 @@ platform :ios do # sign the app (whithout rebuilding it) build_app( skip_build_archive: true, - archive_path: "../build/ios/archive/Runner.xarchive" + archive_path: "../build/ios/archive/Runner.xcarchive" ) upload_to_app_store( diff --git a/frontend/ios/fastlane/README.md b/frontend/ios/fastlane/README.md index 3c643db..a114bc7 100644 --- a/frontend/ios/fastlane/README.md +++ b/frontend/ios/fastlane/README.md @@ -23,21 +23,21 @@ For _fastlane_ installation instructions, see [Installing _fastlane_](https://do Load the App Store Connect API token -### ios beta - -```sh -[bundle exec] fastlane ios beta -``` - -Push a new beta build to TestFlight - ### ios deploy_testing ```sh [bundle exec] fastlane ios deploy_testing ``` +Deploy a new version to closed testing (testflight) +### ios deploy_release + +```sh +[bundle exec] fastlane ios deploy_release +``` + +Deploy a new version as a full release ----