Skip to content
This repository has been archived by the owner on Nov 1, 2023. It is now read-only.

Allow passing export_options to build lane #21

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,6 @@ platform :ios do
desc 'Create build and send to iTunes'
private_lane :publish_itunes do
build(match_type: 'appstore', export_method: 'app-store')

deliver(force: true)
end

Expand Down Expand Up @@ -184,6 +183,7 @@ platform :ios do
clean: true,
include_symbols: true,
export_method: options[:export_method],
export_options: options[:export_options],
)
end

Expand Down