Skip to content

Commit 9f6358e

Browse files
authored
Add release notes (#24)
1 parent 3a7c5ec commit 9f6358e

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

lib/fastlane/plugin/emerge/actions/emerge_action.rb

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff 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
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module Fastlane
22
module Emerge
3-
VERSION = "0.10.1"
3+
VERSION = "0.10.2"
44
end
55
end

0 commit comments

Comments
 (0)