From 10e2323fe7401968d72215b75df98cd8c81a7326 Mon Sep 17 00:00:00 2001 From: Bryan Oltman Date: Tue, 30 Jul 2024 14:54:13 -0400 Subject: [PATCH] Update fastlane guide to reflect plugin update (#275) --- src/content/docs/ci/fastlane.mdx | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/src/content/docs/ci/fastlane.mdx b/src/content/docs/ci/fastlane.mdx index d9e011b5..252ef9f6 100644 --- a/src/content/docs/ci/fastlane.mdx +++ b/src/content/docs/ci/fastlane.mdx @@ -11,8 +11,9 @@ releasing and patching. ## Installation -Follow the setup instructions on the -[fastlane website](https://docs.fastlane.tools/) to install fastlane. +Follow the setup instructions on the fastlane website to install fastlane +([ios](https://docs.fastlane.tools/getting-started/ios/setup/), +[android](https://docs.fastlane.tools/getting-started/android/setup/)). ## Setup @@ -37,13 +38,10 @@ Open the `Fastfile` in the `fastlane` directory and add the following lane: ```ruby lane :release_shorebird do shorebird_release(platform: "ios") - upload_to_testflight(ipa: "../build/ios/ipa/fastlane_test.ipa") + upload_to_testflight end ``` -The .ipa file name will depend on your project name. The Flutter app for this -guide is called `fastlane_test`. - To run this, execute the following command: ```bash