fastlane-plugin-emerge 0.10.1 → 0.10.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 02057e8809e34ac67fe9c522e7addd6fc598f94fff4bbe7dd31ba3196b1bde88
4
- data.tar.gz: 2de7d0f4bac7fc5070f9b40c02c0bd32c8b02cb3034ff40e43515ba2e3474464
3
+ metadata.gz: 4130fb5888b6a3bad42355185be1302fa84c2a76fdc659a377151d9bf695d40f
4
+ data.tar.gz: 9402f64c96f47fed1cdb28761a99efd64585528420ded928fff19cd231d57a77
5
5
  SHA512:
6
- metadata.gz: 89ba8a527a601d2b89fd022a195bdba4cc2d7bdc6328e4f99acc723c33f0eca0e03874b53c0aa2cf3f3603d5c758abbd0c9ef95d93613698815bb8ba1e346789
7
- data.tar.gz: 3a962e586922ec8bae718875b47a8c37d4630838f5999311df4085659d26aa18434210b38fc8ded955870cdae3c96a4ddfa3a976d9f45339c033430453e90d78
6
+ metadata.gz: 31e479d302fa2b35d8fca1d4c7c83237409ea84fb84cd073a656b8b9ee54f6daa89d89864c79a4c2dfcf8ff8b89d5bff2c8fa50f782239e193534c7bd68be6e9
7
+ data.tar.gz: 1ab88a61d1ff490d271a6d0a206f108c9f117be4caefbff878fb42d401a8470105ef700855dd00c5f33dd02948092487f392fd7bd610fe42d0302983ccacf9f6
@@ -31,7 +31,7 @@ module Fastlane
31
31
 
32
32
  if file_path.nil? || !File.exist?(file_path)
33
33
  UI.error("Invalid input file")
34
- return
34
+ return false
35
35
  end
36
36
  extension = File.extname(file_path)
37
37
 
@@ -86,7 +86,7 @@ module Fastlane
86
86
  UI.error("Provided #{extension == '.zip' ? 'zipped archive' : 'ipa'} and linkmaps, linkmaps will not be added to upload.")
87
87
  elsif extension != '.zip' && extension != '.ipa'
88
88
  UI.error("Invalid input file")
89
- return
89
+ return false
90
90
  end
91
91
 
92
92
  params = {
@@ -98,10 +98,12 @@ module Fastlane
98
98
  gitlabProjectId: gitlab_project_id,
99
99
  orderFileVersion: order_file_version,
100
100
  appIdSuffix: params[:app_id_suffix],
101
+ releaseNotes: params[:release_notes],
101
102
  tag: tag || "default"
102
103
  }
103
104
  upload_id = Helper::EmergeHelper.perform_upload(api_token, params, file_path)
104
105
  UI.success("🎉 Your app is processing, you can find the results at https://emergetools.com/build/#{upload_id}")
106
+ upload_id
105
107
  end
106
108
 
107
109
  def self.copy_dsyms(from, to)
@@ -192,6 +194,10 @@ module Fastlane
192
194
  FastlaneCore::ConfigItem.new(key: :app_id_suffix,
193
195
  description: "A suffix to append to the application ID to differentiate between different builds of the same app",
194
196
  optional: true,
197
+ type: String),
198
+ FastlaneCore::ConfigItem.new(key: :release_notes,
199
+ description: "A markdown string with release notes for the upload",
200
+ optional: true,
195
201
  type: String)
196
202
  ]
197
203
  end
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module Emerge
3
- VERSION = "0.10.1"
3
+ VERSION = "0.10.2"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-emerge
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.1
4
+ version: 0.10.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Emerge Tools, Inc
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-07-16 00:00:00.000000000 Z
11
+ date: 2024-07-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday