Skip to content

Commit

Permalink
Update fastlane guide to reflect plugin update (#275)
Browse files Browse the repository at this point in the history
  • Loading branch information
bryanoltman authored Jul 30, 2024
1 parent 2fadaa8 commit 10e2323
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions src/content/docs/ci/fastlane.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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
Expand Down

0 comments on commit 10e2323

Please sign in to comment.