fastlane 1.29.1 → 1.29.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e3e8c6dd6726d0eae740defeb92f5ad865bc76fd
4
- data.tar.gz: 47497029c60f4c0c239e89d0780d4f240e8ff7e5
3
+ metadata.gz: 108eb0a64379dba217d51d102001538d6a16a48e
4
+ data.tar.gz: fbc5d139d5ca919a952f3ab61d92b081fe1251b2
5
5
  SHA512:
6
- metadata.gz: 59fa7edf2efcbf7a0ad5068a11dde66517b6c102f9def8cf6fdb84b45167c7332a1dc47a5fca68963bf877d6b750bc4fb2c0274809efbe2943ef9e211f89188e
7
- data.tar.gz: 706c1ce6c84461589fb2f1b1f4bf70bea1bd479a3757982d5eb864e22c29d3c315241c8fabd6d248d202a239a9d1280ad0cc51c75971984dd89d271cda2b2bdf
6
+ metadata.gz: 4548c452123df927adff3724c25aad2995817e8a64c24cf8c6ef3cafba4d3551c1a4ae7e07ed0879cee80f8276fa981dc8bbced2f1601608f0b6e57037470695
7
+ data.tar.gz: 15e7a042b59e45e4482f44ebd8ba67a840e55d6b6c0a072e267be858d2bb27ac35fa2f86daa89f1c2e4c9cb222c82fc80ee37157c36c380cc84fc5832e6956cd
@@ -4,8 +4,7 @@ module Fastlane
4
4
  def self.run(options)
5
5
  paths = [
6
6
  Actions.lane_context[Actions::SharedValues::IPA_OUTPUT_PATH],
7
- Actions.lane_context[Actions::SharedValues::DSYM_OUTPUT_PATH],
8
- Actions.lane_context[Actions::SharedValues::SIGH_PROFILE_PATH]
7
+ Actions.lane_context[Actions::SharedValues::DSYM_OUTPUT_PATH]
9
8
  ]
10
9
 
11
10
  paths += Actions.lane_context[Actions::SharedValues::SIGH_PROFILE_PATHS] || []
@@ -26,7 +25,7 @@ module Fastlane
26
25
  [
27
26
  FastlaneCore::ConfigItem.new(key: :exclude_pattern,
28
27
  env_name: "FL_CLEAN_BUILD_ARTIFACTS_EXCLUDE_PATTERN",
29
- description: "Exclude all files from clearing that match the given pattern: e.g. '.*\.mobileprovision'",
28
+ description: "Exclude all files from clearing that match the given Regex pattern: e.g. '.*\.mobileprovision'",
30
29
  default_value: nil,
31
30
  optional: true)
32
31
  ]
@@ -0,0 +1,22 @@
1
+ module Fastlane
2
+ module Actions
3
+ class DebugAction < Action
4
+ def self.run(params)
5
+ puts "Lane Context".green
6
+ puts Actions.lane_context
7
+ end
8
+
9
+ def self.description
10
+ "Print out an overview of the lane context values"
11
+ end
12
+
13
+ def self.is_supported?(platform)
14
+ true
15
+ end
16
+
17
+ def self.author
18
+ "KrauseFx"
19
+ end
20
+ end
21
+ end
22
+ end
@@ -127,7 +127,7 @@ module Fastlane
127
127
  def self.load_dot_env(env)
128
128
  require 'dotenv'
129
129
 
130
- Actions.lane_context[Actions::SharedValues::ENVIRONMENT] = env
130
+ Actions.lane_context[Actions::SharedValues::ENVIRONMENT] = env if env
131
131
 
132
132
  # Making sure the default '.env' and '.env.default' get loaded
133
133
  env_file = File.join(Fastlane::FastlaneFolder.path || "", '.env')
@@ -1,3 +1,3 @@
1
1
  module Fastlane
2
- VERSION = '1.29.1'
2
+ VERSION = '1.29.2'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.29.1
4
+ version: 1.29.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Felix Krause
@@ -560,6 +560,7 @@ files:
560
560
  - lib/fastlane/actions/commit_version_bump.rb
561
561
  - lib/fastlane/actions/crashlytics.rb
562
562
  - lib/fastlane/actions/create_keychain.rb
563
+ - lib/fastlane/actions/debug.rb
563
564
  - lib/fastlane/actions/default_platform.rb
564
565
  - lib/fastlane/actions/delete_keychain.rb
565
566
  - lib/fastlane/actions/deliver.rb