fastlane 1.7.1 → 1.7.2
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 +4 -4
- data/lib/fastlane.rb +1 -1
- data/lib/fastlane/actions/ipa.rb +2 -0
- data/lib/fastlane/actions/sigh.rb +2 -0
- data/lib/fastlane/actions_list.rb +1 -1
- data/lib/fastlane/fast_file.rb +2 -0
- data/lib/fastlane/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a71f7a01a4b843699d4c8ffa25c8a62288415301
|
|
4
|
+
data.tar.gz: 8ad55d2dbc5fb2f01860add0db0d46addb3107de
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 594ed8eb7a14f84ae83e0d292a79741bc58123d6c3e2a2707d4b16154260fc872d7e9397ecc70361234cdf3c6d91110a4a4e9d7f6987161db0893dc97c42bc46
|
|
7
|
+
data.tar.gz: 62673a122e8ed81f85df089da8f8794f54be858b965406b3d1aba2351661cccd4e7e7aa3db6edfee35d5fe03c50e98e6c803562fc7de5ce35045e56408010187
|
data/lib/fastlane.rb
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
require 'fastlane/core_ext/string' # this has to be above most of the other requires
|
|
2
2
|
require 'fastlane/version'
|
|
3
|
+
require 'fastlane/actions/actions_helper' # has to be before fast_file
|
|
3
4
|
require 'fastlane/fast_file'
|
|
4
5
|
require 'fastlane/dependency_checker'
|
|
5
6
|
require 'fastlane/runner'
|
|
@@ -8,7 +9,6 @@ require 'fastlane/fastlane_folder'
|
|
|
8
9
|
require 'fastlane/junit_generator'
|
|
9
10
|
require 'fastlane/lane_manager'
|
|
10
11
|
require 'fastlane/action'
|
|
11
|
-
require 'fastlane/actions/actions_helper'
|
|
12
12
|
require 'fastlane/action_collector'
|
|
13
13
|
require 'fastlane/supported_platforms'
|
|
14
14
|
require 'fastlane/configuration_helper'
|
data/lib/fastlane/actions/ipa.rb
CHANGED
|
@@ -82,6 +82,8 @@ module Fastlane
|
|
|
82
82
|
"A build error occured. This can have many reasons, usually",
|
|
83
83
|
"it has something to do with code signing. The `ipa` action",
|
|
84
84
|
"uses `shenzhen` under the hood: https://github.com/nomad/shenzhen",
|
|
85
|
+
"For code signing related issues, check out this guide:",
|
|
86
|
+
"https://github.com/KrauseFx/fastlane/blob/master/docs/CodeSigning.md",
|
|
85
87
|
"The command that was used by fastlane:",
|
|
86
88
|
core_command,
|
|
87
89
|
"-------------------------------------------------------"
|
|
@@ -21,6 +21,8 @@ module Fastlane
|
|
|
21
21
|
|
|
22
22
|
Actions.lane_context[SharedValues::SIGH_PROFILE_PATH] = path # absolute path
|
|
23
23
|
Actions.lane_context[SharedValues::SIGH_UDID] = ENV["SIGH_UDID"] if ENV["SIGH_UDID"] # The UDID of the new profile
|
|
24
|
+
|
|
25
|
+
return ENV["SIGH_UDID"] # return the UDID of the new profile
|
|
24
26
|
ensure
|
|
25
27
|
FastlaneCore::UpdateChecker.show_update_status('sigh', Sigh::VERSION)
|
|
26
28
|
end
|
|
@@ -84,7 +84,7 @@ module Fastlane
|
|
|
84
84
|
headings: ['Key', 'Description'],
|
|
85
85
|
rows: output
|
|
86
86
|
)
|
|
87
|
-
puts "Access the output values using `
|
|
87
|
+
puts "Access the output values using `lane_context[SharedValues::VARIABLE_NAME]`"
|
|
88
88
|
puts ""
|
|
89
89
|
end
|
|
90
90
|
|
data/lib/fastlane/fast_file.rb
CHANGED
data/lib/fastlane/version.rb
CHANGED