fastlane-plugin-notarize 0.2.1 → 0.3.0

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
  SHA1:
3
- metadata.gz: 01bec99979e8263df14a46d03e6f6b0b482d37df
4
- data.tar.gz: 5f3a978cf1c0522bd70c05b1bb20792e59822c44
3
+ metadata.gz: f7c0f8c219ddfb218e5832ee505eec68da38b525
4
+ data.tar.gz: eb27f5b8fa91e3dfb9507490de5fef5143d7cde3
5
5
  SHA512:
6
- metadata.gz: 6d5667a5e9e6f01f0aaa6da50b44468ebf2b2650fc9b24707cf8ff28513a764a283c17d2c195cfc4b796fb1fe8544dff451150d1ccb64e956a44b30880ea6131
7
- data.tar.gz: ee51080404be195383c213e3ebc748a44215ab147bd9e9c677395aa25853e705cc0ea25203c2099cef70c2ae0a2aacd463219b2a27fa067d9505bb8a089976d8
6
+ metadata.gz: 299b32f3cacc3149203272db068c8f4a531f3ef85e3fb1dcc79332a3e0ce35bbf730eac30420c6457f980e45a1826041e5abf98d92f89732bb488eaffa3edaea
7
+ data.tar.gz: 013a5f7a028c591c3361dc7af4377d6f9ddc9ad96edeec489a7da66a696e91c9eeefccf3e6eb8f0bbda3c4ab0891b166e219ddba610b924ab06ea5384d218ecf
@@ -31,12 +31,13 @@ module Fastlane
31
31
  apple_id_account = CredentialsManager::AccountManager.new(user: params[:username])
32
32
 
33
33
  # Add password as a temporary environment variable for altool.
34
- ENV['FL_NOTARIZE_PASSWORD'] = apple_id_account.password
34
+ # Use app specific password if specified.
35
+ ENV['FL_NOTARIZE_PASSWORD'] = ENV['FASTLANE_APPLE_APPLICATION_SPECIFIC_PASSWORD'] || apple_id_account.password
35
36
 
36
37
  UI.message('Uploading package to notarization service, might take a while')
37
38
 
38
39
  notarization_upload_command = "xcrun altool --notarize-app -t osx -f \"#{compressed_package_path || package_path}\" --primary-bundle-id #{bundle_id} -u #{apple_id_account.user} -p @env:FL_NOTARIZE_PASSWORD --output-format xml"
39
- notarization_upload_command << " --asc-provider \"#{params[:asc_provider]}\"" unless params[:asc_provider]
40
+ notarization_upload_command << " --asc-provider \"#{params[:asc_provider]}\"" if params[:asc_provider]
40
41
 
41
42
  notarization_upload_response = Actions.sh(
42
43
  notarization_upload_command,
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module Notarize
3
- VERSION = '0.2.1'
3
+ VERSION = '0.3.0'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-notarize
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Zeplin, Inc.
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-03-21 00:00:00.000000000 Z
11
+ date: 2019-07-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pry