Skip to content

Commit

Permalink
Add suffix (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
noahsmartin authored Mar 27, 2024
1 parent b37424b commit b173052
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions lib/fastlane/plugin/emerge/actions/emerge_action.rb
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ def self.run(params)
repoName: repo_name,
gitlabProjectId: gitlab_project_id,
orderFileVersion: order_file_version,
appIdSuffix: params[:app_id_suffix],
tag: tag || "default"
}
upload_id = Helper::EmergeHelper.perform_upload(api_token, params, file_path)
Expand Down Expand Up @@ -186,6 +187,10 @@ def self.available_options
FastlaneCore::ConfigItem.new(key: :config_path,
description: "Path to Emerge config path",
optional: true,
type: String),
FastlaneCore::ConfigItem.new(key: :app_id_suffix,
description: "A suffix to append to the application ID to differentiate between different builds of the same app",
optional: true,
type: String)
]
end
Expand Down
2 changes: 1 addition & 1 deletion lib/fastlane/plugin/emerge/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Fastlane
module Emerge
VERSION = "0.9.0"
VERSION = "0.10.0"
end
end

0 comments on commit b173052

Please sign in to comment.