fastlane-plugin-notarize 1.0.1 → 1.1.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
  SHA256:
3
- metadata.gz: 05cf079ebb04bc6fdf7d38da60c866399bc2fb66d46a19cc66e3714d188f67e4
4
- data.tar.gz: 6f0cdeebb3df1e3e9e2362cdf11f820d95fb2e14cff6ee5714442f7b011d4dfe
3
+ metadata.gz: 40b1e7133befae1435804539732357363c108bfb7d61cb365540fc91c2693502
4
+ data.tar.gz: d79049fbb2e952e8b567a43d05e01c442a20d6c9a948488e4ada3ee3bfa1c0ba
5
5
  SHA512:
6
- metadata.gz: 6da72af71b68dcdb743dc9cfc7e3ac288ea51427729af424c7d99697dbdd86d254f38f9b23bfaeaeaa615403b93452a3b8c2d01889f68fd21eb80de45fcebe57
7
- data.tar.gz: c72847afc15c183250afd15e15da5a45aae9b7f3bf2a4ba5510801918fd2c9484c2b394f14d8a45f0fba2130af82167dcf0e9e32fddcb5b194fe11a1fd886db1
6
+ metadata.gz: d9d21b7a777d23c3ed2f259c3084cb67da118ceb88a60fc6c2c9b71a7187dd1ca1695524ebccdd3f2467ffbc00e7c1cedcb0fe05e3d24f50fb77cf74df2cfa49
7
+ data.tar.gz: a5d0523d88bdbe7b27142ba8bda64ac5efc3e40e9cd74f9f6097d56d73e8c11027815a48a669ad5985bb5be88b05eaa967b68faf78b55fc43b63b10b18f80bff
data/README.md CHANGED
@@ -22,6 +22,8 @@ notarize(
22
22
 
23
23
  This action should prompt you for an Apple ID and password, using fastlane's built-in credentials manager. To use the action in a CI environment like Bitrise, CircleCI or Travis CI, you can set `FASTLANE_USER` and `FASTLANE_PASSWORD` environment variables. (Make sure to use secret environment variables, specifically for the password.)
24
24
 
25
+ The tool also stores the `log file url` in an environment variable called `FL_NOTARIZE_LOG_FILE_URL` for further use after the notarization. The log file contains information about errors and/or warnings that arose during notarization.
26
+
25
27
  ## Example
26
28
 
27
29
  Check out the [example `Fastfile`](fastlane/Fastfile) to see how to use this plugin. Try it by cloning the repo, running `bundle exec fastlane test`.
@@ -84,6 +84,7 @@ module Fastlane
84
84
  end
85
85
 
86
86
  log_url = notarization_info['LogFileURL']
87
+ ENV['FL_NOTARIZE_LOG_FILE_URL'] = log_url
87
88
  log_suffix = ''
88
89
  if log_url && print_log
89
90
  log_response = Net::HTTP.get(URI(log_url))
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module Notarize
3
- VERSION = '1.0.1'
3
+ VERSION = '1.1.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: 1.0.1
4
+ version: 1.1.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-07 00:00:00.000000000 Z
11
+ date: 2020-01-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pry
@@ -152,7 +152,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
152
152
  - !ruby/object:Gem::Version
153
153
  version: '0'
154
154
  requirements: []
155
- rubygems_version: 3.0.6
155
+ rubygems_version: 3.0.3
156
156
  signing_key:
157
157
  specification_version: 4
158
158
  summary: fastlane plugin to notarize a macOS app