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 +4 -4
- data/lib/fastlane/actions/clean_build_artifacts.rb +2 -3
- data/lib/fastlane/actions/debug.rb +22 -0
- data/lib/fastlane/lane_manager.rb +1 -1
- data/lib/fastlane/version.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 108eb0a64379dba217d51d102001538d6a16a48e
|
|
4
|
+
data.tar.gz: fbc5d139d5ca919a952f3ab61d92b081fe1251b2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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')
|
data/lib/fastlane/version.rb
CHANGED
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.
|
|
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
|