Skip to content

Commit

Permalink
Enable xcode build in fastlane beta
Browse files Browse the repository at this point in the history
  • Loading branch information
thornbill committed Dec 17, 2024
1 parent 438812a commit 87c4f92
Showing 1 changed file with 18 additions and 4 deletions.
22 changes: 18 additions & 4 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,25 @@ end
platform :ios do
desc "Publish beta to TestFlight"
lane :beta do |options|
key_id = options[:keyID]
issuer_id = options[:issuerID]
key_content = options[:keyContents]

xcodes(version: "15.4")

# FIXME: Build and publish the app
# build_app(scheme: "Jellyfin",
# workspace: "ios/Jellyfin.xcworkspace",
# configuration: "Release")
app_store_connect_api_key(
key_id: key_id,
issuer_id: issuer_id,
key_content: key_content,
is_key_content_base64: true,
duration: 1200,
in_house: false
)

build_app(
scheme: "Jellyfin",
workspace: "ios/Jellyfin.xcworkspace",
configuration: "Release"
)
end
end

0 comments on commit 87c4f92

Please sign in to comment.