Skip to content

Commit

Permalink
Add set_up_code_singing lane that runs both App Store and Dev
Browse files Browse the repository at this point in the history
  • Loading branch information
mokagio committed Jul 4, 2024
1 parent d4e9a84 commit 2bfad90
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ platform :ios do

desc 'Builds the app for iOS and Mac Catalyst App Store distribution'
lane :build_for_app_store do |options|
set_up_code_signing unless options[:skip_code_signing_setup]
set_up_code_signing_app_store unless options[:skip_code_signing_setup]

shared_options = {
scheme: 'Blocknotes',
Expand Down Expand Up @@ -99,7 +99,11 @@ platform :ios do
)
end

desc 'Sets up code signing'
lane :set_up_code_signing do |readonly: true|
set_up_code_signing_app_store(readonly: readonly)
set_up_code_signing_deveploment(readonly: readonly)
end

lane :set_up_code_signing_app_store do |readonly: true|
set_up_code_signing(type: 'appstore', readonly: readonly)
end
Expand Down

0 comments on commit 2bfad90

Please sign in to comment.