Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[action] Generate update_code_signing_settings action instead of deprecated automatic_code_signing #15900

Merged
merged 11 commits into from
Mar 23, 2020
2 changes: 1 addition & 1 deletion fastlane/lib/fastlane/actions/automatic_code_signing.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module Fastlane
module Actions
class AutomaticCodeSigningAction < Action
def self.run(params)
FastlaneCore::PrintTable.print_values(config: params, title: "Summary for Automatic Codesigning")
FastlaneCore::PrintTable.print_values(config: params, title: "Summary for Codesigning")
path = params[:path]
path = File.join(File.expand_path(path), "project.pbxproj")

Expand Down
14 changes: 14 additions & 0 deletions fastlane/lib/fastlane/actions/code_signing.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
module Fastlane
module Actions
require 'fastlane/actions/automatic_code_signing'
class CodeSigningAction < AutomaticCodeSigningAction
#####################################################
# @!group Documentation
#####################################################

def self.description
"Alias for the `automatic_code_signing` action"
end
end
end
end
1 change: 1 addition & 0 deletions fastlane/spec/unused_options_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@
download_from_play_store
validate_play_store_json_key
update_fastlane
code_signing
)
end

Expand Down