File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
lib/fastlane/plugin/emerge Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -98,6 +98,7 @@ def self.run(params)
9898 gitlabProjectId : gitlab_project_id ,
9999 orderFileVersion : order_file_version ,
100100 appIdSuffix : params [ :app_id_suffix ] ,
101+ releaseNotes : params [ :release_notes ] ,
101102 tag : tag || "default"
102103 }
103104 upload_id = Helper ::EmergeHelper . perform_upload ( api_token , params , file_path )
@@ -192,6 +193,10 @@ def self.available_options
192193 FastlaneCore ::ConfigItem . new ( key : :app_id_suffix ,
193194 description : "A suffix to append to the application ID to differentiate between different builds of the same app" ,
194195 optional : true ,
196+ type : String ) ,
197+ FastlaneCore ::ConfigItem . new ( key : :release_notes ,
198+ description : "A markdown string with release notes for the upload" ,
199+ optional : true ,
195200 type : String )
196201 ]
197202 end
Original file line number Diff line number Diff line change 11module Fastlane
22 module Emerge
3- VERSION = "0.10.1 "
3+ VERSION = "0.10.2 "
44 end
55end
You can’t perform that action at this time.
0 commit comments