fastlane-plugin-notarize 0.2.1 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f7c0f8c219ddfb218e5832ee505eec68da38b525
|
|
4
|
+
data.tar.gz: eb27f5b8fa91e3dfb9507490de5fef5143d7cde3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
-
|
|
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]}\""
|
|
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,
|
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.
|
|
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-
|
|
11
|
+
date: 2019-07-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: pry
|