Skip to content

Commit

Permalink
fix: correct pilot configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
siepra committed Oct 23, 2023
1 parent 7c90e05 commit 5a32bb8
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion packages/mobile/fastlane/Fastfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
fastlane_version '2.216.0'

api_key = {
key_id: ENV["APP_STORE_CONNECT_API_KEY_KEY_ID"],
issuer_id: ENV["APP_STORE_CONNECT_API_KEY_ISSUER_ID"],
key_content: ENV["APP_STORE_CONNECT_API_KEY"],
}

platform :ios do
desc 'Ship to TestFlight'
lane :beta do
pilot(api_key)
pilot(api_key: api_key)
end
end

0 comments on commit 5a32bb8

Please sign in to comment.