fastlane 2.150.3 → 2.151.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +86 -86
- data/deliver/lib/deliver/options.rb +7 -1
- data/deliver/lib/deliver/submit_for_review.rb +7 -7
- data/deliver/lib/deliver/upload_metadata.rb +2 -2
- data/fastlane/lib/fastlane/actions/docs/upload_to_testflight.md +3 -0
- data/fastlane/lib/fastlane/actions/notarize.rb +13 -3
- data/fastlane/lib/fastlane/actions/pod_push.rb +10 -1
- data/fastlane/lib/fastlane/actions/resign.rb +1 -1
- data/fastlane/lib/fastlane/actions/setup_ci.rb +5 -0
- data/fastlane/lib/fastlane/actions/setup_circle_ci.rb +1 -1
- data/fastlane/lib/fastlane/actions/setup_travis.rb +1 -1
- data/fastlane/lib/fastlane/actions/upload_symbols_to_crashlytics.rb +10 -2
- data/fastlane/lib/fastlane/documentation/docs_generator.rb +1 -1
- data/fastlane/lib/fastlane/helper/s3_client_helper.rb +28 -11
- data/fastlane/lib/fastlane/server/socket_server.rb +7 -1
- data/fastlane/lib/fastlane/swift_fastlane_function.rb +1 -1
- data/fastlane/lib/fastlane/version.rb +1 -1
- data/fastlane/swift/Actions.swift +1 -1
- data/fastlane/swift/ArgumentProcessor.swift +24 -24
- data/fastlane/swift/ControlCommand.swift +3 -3
- data/fastlane/swift/Deliverfile.swift +4 -8
- data/fastlane/swift/DeliverfileProtocol.swift +181 -182
- data/fastlane/swift/Fastlane.swift +2813 -2802
- data/fastlane/swift/Gymfile.swift +4 -8
- data/fastlane/swift/GymfileProtocol.swift +133 -134
- data/fastlane/swift/LaneFileProtocol.swift +17 -17
- data/fastlane/swift/Matchfile.swift +4 -8
- data/fastlane/swift/MatchfileProtocol.swift +115 -112
- data/fastlane/swift/Plugins.swift +1 -1
- data/fastlane/swift/Precheckfile.swift +4 -8
- data/fastlane/swift/PrecheckfileProtocol.swift +22 -23
- data/fastlane/swift/RubyCommand.swift +34 -37
- data/fastlane/swift/RubyCommandable.swift +3 -1
- data/fastlane/swift/Runner.swift +76 -69
- data/fastlane/swift/Scanfile.swift +4 -8
- data/fastlane/swift/ScanfileProtocol.swift +190 -191
- data/fastlane/swift/Screengrabfile.swift +4 -8
- data/fastlane/swift/ScreengrabfileProtocol.swift +67 -68
- data/fastlane/swift/Snapshotfile.swift +4 -8
- data/fastlane/swift/SnapshotfileProtocol.swift +127 -128
- data/fastlane/swift/SocketClient.swift +84 -90
- data/fastlane/swift/SocketResponse.swift +14 -14
- data/fastlane/swift/formatting/Brewfile +1 -0
- data/fastlane/swift/formatting/Brewfile.lock.json +39 -0
- data/fastlane/swift/formatting/Rakefile +18 -0
- data/fastlane/swift/main.swift +5 -6
- data/fastlane_core/lib/fastlane_core/itunes_transporter.rb +15 -7
- data/fastlane_core/lib/fastlane_core/ui/fastlane_runner.rb +1 -1
- data/match/lib/assets/READMETemplate.md +5 -2
- data/match/lib/match/options.rb +4 -0
- data/match/lib/match/runner.rb +1 -0
- data/match/lib/match/storage/git_storage.rb +1 -1
- data/match/lib/match/storage/s3_storage.rb +25 -7
- data/sigh/lib/assets/resign.sh +18 -0
- data/spaceship/lib/spaceship/client.rb +1 -2
- data/spaceship/lib/spaceship/connect_api/client.rb +0 -1
- data/spaceship/lib/spaceship/connect_api/models/app_store_version.rb +1 -1
- metadata +31 -38
- data/deliver/lib/deliver/.upload_metadata.rb.swp +0 -0
- data/spaceship/lib/spaceship/babosa_fix.rb +0 -30
@@ -9,13 +9,9 @@
|
|
9
9
|
//
|
10
10
|
|
11
11
|
class Gymfile: GymfileProtocol {
|
12
|
-
// If you want to enable `gym`, run `fastlane gym init`
|
13
|
-
// After, this file will be replaced with a custom implementation that contains values you supplied
|
14
|
-
// during the `init` process, and you won't see this message
|
12
|
+
// If you want to enable `gym`, run `fastlane gym init`
|
13
|
+
// After, this file will be replaced with a custom implementation that contains values you supplied
|
14
|
+
// during the `init` process, and you won't see this message
|
15
15
|
}
|
16
16
|
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
// Generated with fastlane 2.150.3
|
17
|
+
// Generated with fastlane 2.151.0
|
@@ -1,185 +1,184 @@
|
|
1
1
|
protocol GymfileProtocol: class {
|
2
|
+
/// Path to the workspace file
|
3
|
+
var workspace: String? { get }
|
2
4
|
|
3
|
-
|
4
|
-
|
5
|
+
/// Path to the project file
|
6
|
+
var project: String? { get }
|
5
7
|
|
6
|
-
|
7
|
-
|
8
|
+
/// The project's scheme. Make sure it's marked as `Shared`
|
9
|
+
var scheme: String? { get }
|
8
10
|
|
9
|
-
|
10
|
-
|
11
|
+
/// Should the project be cleaned before building it?
|
12
|
+
var clean: Bool { get }
|
11
13
|
|
12
|
-
|
13
|
-
|
14
|
+
/// The directory in which the ipa file should be stored in
|
15
|
+
var outputDirectory: String { get }
|
14
16
|
|
15
|
-
|
16
|
-
|
17
|
+
/// The name of the resulting ipa file
|
18
|
+
var outputName: String? { get }
|
17
19
|
|
18
|
-
|
19
|
-
|
20
|
+
/// The configuration to use when building the app. Defaults to 'Release'
|
21
|
+
var configuration: String? { get }
|
20
22
|
|
21
|
-
|
22
|
-
|
23
|
+
/// Hide all information that's not necessary while building
|
24
|
+
var silent: Bool { get }
|
23
25
|
|
24
|
-
|
25
|
-
|
26
|
+
/// The name of the code signing identity to use. It has to match the name exactly. e.g. 'iPhone Distribution: SunApps GmbH'
|
27
|
+
var codesigningIdentity: String? { get }
|
26
28
|
|
27
|
-
|
28
|
-
|
29
|
+
/// Should we skip packaging the ipa?
|
30
|
+
var skipPackageIpa: Bool { get }
|
29
31
|
|
30
|
-
|
31
|
-
|
32
|
+
/// Should we skip packaging the pkg?
|
33
|
+
var skipPackagePkg: Bool { get }
|
32
34
|
|
33
|
-
|
34
|
-
|
35
|
+
/// Should the ipa file include symbols?
|
36
|
+
var includeSymbols: Bool? { get }
|
35
37
|
|
36
|
-
|
37
|
-
|
38
|
+
/// Should the ipa file include bitcode?
|
39
|
+
var includeBitcode: Bool? { get }
|
38
40
|
|
39
|
-
|
40
|
-
|
41
|
+
/// Method used to export the archive. Valid values are: app-store, ad-hoc, package, enterprise, development, developer-id
|
42
|
+
var exportMethod: String? { get }
|
41
43
|
|
42
|
-
|
43
|
-
|
44
|
+
/// Path to an export options plist or a hash with export options. Use 'xcodebuild -help' to print the full set of available options
|
45
|
+
var exportOptions: [String: Any]? { get }
|
44
46
|
|
45
|
-
|
46
|
-
|
47
|
+
/// Pass additional arguments to xcodebuild for the package phase. Be sure to quote the setting names and values e.g. OTHER_LDFLAGS="-ObjC -lstdc++"
|
48
|
+
var exportXcargs: String? { get }
|
47
49
|
|
48
|
-
|
49
|
-
|
50
|
+
/// Export ipa from previously built xcarchive. Uses archive_path as source
|
51
|
+
var skipBuildArchive: Bool? { get }
|
50
52
|
|
51
|
-
|
52
|
-
|
53
|
+
/// After building, don't archive, effectively not including -archivePath param
|
54
|
+
var skipArchive: Bool? { get }
|
53
55
|
|
54
|
-
|
55
|
-
|
56
|
+
/// Build without codesigning
|
57
|
+
var skipCodesigning: Bool? { get }
|
56
58
|
|
57
|
-
|
58
|
-
|
59
|
+
/// Platform to build when using a Catalyst enabled app. Valid values are: ios, macos
|
60
|
+
var catalystPlatform: String? { get }
|
59
61
|
|
60
|
-
|
61
|
-
|
62
|
+
/// Full name of 3rd Party Mac Developer Installer or Developer ID Installer certificate. Example: `3rd Party Mac Developer Installer: Your Company (ABC1234XWYZ)`
|
63
|
+
var installerCertName: String? { get }
|
62
64
|
|
63
|
-
|
64
|
-
|
65
|
+
/// The directory in which the archive should be stored in
|
66
|
+
var buildPath: String? { get }
|
65
67
|
|
66
|
-
|
67
|
-
|
68
|
+
/// The path to the created archive
|
69
|
+
var archivePath: String? { get }
|
68
70
|
|
69
|
-
|
70
|
-
|
71
|
+
/// The directory where built products and other derived data will go
|
72
|
+
var derivedDataPath: String? { get }
|
71
73
|
|
72
|
-
|
73
|
-
|
74
|
+
/// Should an Xcode result bundle be generated in the output directory
|
75
|
+
var resultBundle: Bool { get }
|
74
76
|
|
75
|
-
|
76
|
-
|
77
|
+
/// Path to the result bundle directory to create. Ignored if `result_bundle` if false
|
78
|
+
var resultBundlePath: String? { get }
|
77
79
|
|
78
|
-
|
79
|
-
|
80
|
+
/// The directory where to store the build log
|
81
|
+
var buildlogPath: String { get }
|
80
82
|
|
81
|
-
|
82
|
-
|
83
|
+
/// The SDK that should be used for building the application
|
84
|
+
var sdk: String? { get }
|
83
85
|
|
84
|
-
|
85
|
-
|
86
|
+
/// The toolchain that should be used for building the application (e.g. com.apple.dt.toolchain.Swift_2_3, org.swift.30p620160816a)
|
87
|
+
var toolchain: String? { get }
|
86
88
|
|
87
|
-
|
88
|
-
|
89
|
+
/// Use a custom destination for building the app
|
90
|
+
var destination: String? { get }
|
89
91
|
|
90
|
-
|
91
|
-
|
92
|
+
/// Optional: Sometimes you need to specify a team id when exporting the ipa file
|
93
|
+
var exportTeamId: String? { get }
|
92
94
|
|
93
|
-
|
94
|
-
|
95
|
+
/// Pass additional arguments to xcodebuild for the build phase. Be sure to quote the setting names and values e.g. OTHER_LDFLAGS="-ObjC -lstdc++"
|
96
|
+
var xcargs: String? { get }
|
95
97
|
|
96
|
-
|
97
|
-
|
98
|
+
/// Use an extra XCCONFIG file to build your app
|
99
|
+
var xcconfig: String? { get }
|
98
100
|
|
99
|
-
|
100
|
-
|
101
|
+
/// Suppress the output of xcodebuild to stdout. Output is still saved in buildlog_path
|
102
|
+
var suppressXcodeOutput: Bool? { get }
|
101
103
|
|
102
|
-
|
103
|
-
|
104
|
+
/// Disable xcpretty formatting of build output
|
105
|
+
var disableXcpretty: Bool? { get }
|
104
106
|
|
105
|
-
|
106
|
-
|
107
|
+
/// Use the test (RSpec style) format for build output
|
108
|
+
var xcprettyTestFormat: Bool? { get }
|
107
109
|
|
108
|
-
|
109
|
-
|
110
|
+
/// A custom xcpretty formatter to use
|
111
|
+
var xcprettyFormatter: String? { get }
|
110
112
|
|
111
|
-
|
112
|
-
|
113
|
+
/// Have xcpretty create a JUnit-style XML report at the provided path
|
114
|
+
var xcprettyReportJunit: String? { get }
|
113
115
|
|
114
|
-
|
115
|
-
|
116
|
+
/// Have xcpretty create a simple HTML report at the provided path
|
117
|
+
var xcprettyReportHtml: String? { get }
|
116
118
|
|
117
|
-
|
118
|
-
|
119
|
+
/// Have xcpretty create a JSON compilation database at the provided path
|
120
|
+
var xcprettyReportJson: String? { get }
|
119
121
|
|
120
|
-
|
121
|
-
|
122
|
+
/// Analyze the project build time and store the output in 'culprits.txt' file
|
123
|
+
var analyzeBuildTime: Bool? { get }
|
122
124
|
|
123
|
-
|
124
|
-
|
125
|
+
/// Have xcpretty use unicode encoding when reporting builds
|
126
|
+
var xcprettyUtf: Bool? { get }
|
125
127
|
|
126
|
-
|
127
|
-
|
128
|
+
/// Do not try to build a profile mapping from the xcodeproj. Match or a manually provided mapping should be used
|
129
|
+
var skipProfileDetection: Bool { get }
|
128
130
|
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
/// Sets a custom path for Swift Package Manager dependencies
|
133
|
-
var clonedSourcePackagesPath: String? { get }
|
131
|
+
/// Sets a custom path for Swift Package Manager dependencies
|
132
|
+
var clonedSourcePackagesPath: String? { get }
|
134
133
|
}
|
135
134
|
|
136
135
|
extension GymfileProtocol {
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
136
|
+
var workspace: String? { return nil }
|
137
|
+
var project: String? { return nil }
|
138
|
+
var scheme: String? { return nil }
|
139
|
+
var clean: Bool { return false }
|
140
|
+
var outputDirectory: String { return "." }
|
141
|
+
var outputName: String? { return nil }
|
142
|
+
var configuration: String? { return nil }
|
143
|
+
var silent: Bool { return false }
|
144
|
+
var codesigningIdentity: String? { return nil }
|
145
|
+
var skipPackageIpa: Bool { return false }
|
146
|
+
var skipPackagePkg: Bool { return false }
|
147
|
+
var includeSymbols: Bool? { return nil }
|
148
|
+
var includeBitcode: Bool? { return nil }
|
149
|
+
var exportMethod: String? { return nil }
|
150
|
+
var exportOptions: [String: Any]? { return nil }
|
151
|
+
var exportXcargs: String? { return nil }
|
152
|
+
var skipBuildArchive: Bool? { return nil }
|
153
|
+
var skipArchive: Bool? { return nil }
|
154
|
+
var skipCodesigning: Bool? { return nil }
|
155
|
+
var catalystPlatform: String? { return nil }
|
156
|
+
var installerCertName: String? { return nil }
|
157
|
+
var buildPath: String? { return nil }
|
158
|
+
var archivePath: String? { return nil }
|
159
|
+
var derivedDataPath: String? { return nil }
|
160
|
+
var resultBundle: Bool { return false }
|
161
|
+
var resultBundlePath: String? { return nil }
|
162
|
+
var buildlogPath: String { return "~/Library/Logs/gym" }
|
163
|
+
var sdk: String? { return nil }
|
164
|
+
var toolchain: String? { return nil }
|
165
|
+
var destination: String? { return nil }
|
166
|
+
var exportTeamId: String? { return nil }
|
167
|
+
var xcargs: String? { return nil }
|
168
|
+
var xcconfig: String? { return nil }
|
169
|
+
var suppressXcodeOutput: Bool? { return nil }
|
170
|
+
var disableXcpretty: Bool? { return nil }
|
171
|
+
var xcprettyTestFormat: Bool? { return nil }
|
172
|
+
var xcprettyFormatter: String? { return nil }
|
173
|
+
var xcprettyReportJunit: String? { return nil }
|
174
|
+
var xcprettyReportHtml: String? { return nil }
|
175
|
+
var xcprettyReportJson: String? { return nil }
|
176
|
+
var analyzeBuildTime: Bool? { return nil }
|
177
|
+
var xcprettyUtf: Bool? { return nil }
|
178
|
+
var skipProfileDetection: Bool { return false }
|
179
|
+
var clonedSourcePackagesPath: String? { return nil }
|
181
180
|
}
|
182
181
|
|
183
182
|
// Please don't remove the lines below
|
184
183
|
// They are used to detect outdated files
|
185
|
-
// FastlaneRunnerAPIVersion [0.9.
|
184
|
+
// FastlaneRunnerAPIVersion [0.9.25]
|
@@ -16,7 +16,7 @@ import Foundation
|
|
16
16
|
|
17
17
|
public protocol LaneFileProtocol: class {
|
18
18
|
var fastlaneVersion: String { get }
|
19
|
-
static func runLane(named: String, parameters: [String
|
19
|
+
static func runLane(named: String, parameters: [String: String]) -> Bool
|
20
20
|
|
21
21
|
func recordLaneDescriptions()
|
22
22
|
func beforeAll()
|
@@ -26,10 +26,10 @@ public protocol LaneFileProtocol: class {
|
|
26
26
|
|
27
27
|
public extension LaneFileProtocol {
|
28
28
|
var fastlaneVersion: String { return "" } // default "" because that means any is fine
|
29
|
-
func beforeAll() {
|
30
|
-
func afterAll(currentLane: String) {
|
31
|
-
func onError(currentLane: String, errorInfo: String) {} // no op by default
|
32
|
-
func recordLaneDescriptions() {
|
29
|
+
func beforeAll() {} // no op by default
|
30
|
+
func afterAll(currentLane _: String) {} // no op by default
|
31
|
+
func onError(currentLane _: String, errorInfo _: String) {} // no op by default
|
32
|
+
func recordLaneDescriptions() {} // no op by default
|
33
33
|
}
|
34
34
|
|
35
35
|
@objcMembers
|
@@ -53,7 +53,7 @@ public class LaneFile: NSObject, LaneFileProtocol {
|
|
53
53
|
var lanes: [String] = []
|
54
54
|
var methodCount: UInt32 = 0
|
55
55
|
let methodList = class_copyMethodList(self, &methodCount)
|
56
|
-
for i in 0..<Int(methodCount) {
|
56
|
+
for i in 0 ..< Int(methodCount) {
|
57
57
|
let selName = sel_getName(method_getName(methodList![i]))
|
58
58
|
let name = String(cString: selName)
|
59
59
|
let lowercasedName = name.lowercased()
|
@@ -64,9 +64,9 @@ public class LaneFile: NSObject, LaneFileProtocol {
|
|
64
64
|
return lanes
|
65
65
|
}
|
66
66
|
|
67
|
-
public static var lanes: [String
|
68
|
-
var laneToMethodName: [String
|
69
|
-
|
67
|
+
public static var lanes: [String: String] {
|
68
|
+
var laneToMethodName: [String: String] = [:]
|
69
|
+
laneFunctionNames.forEach { name in
|
70
70
|
let lowercasedName = name.lowercased()
|
71
71
|
if lowercasedName.hasSuffix("lane") {
|
72
72
|
laneToMethodName[lowercasedName] = name
|
@@ -84,29 +84,29 @@ public class LaneFile: NSObject, LaneFileProtocol {
|
|
84
84
|
}
|
85
85
|
|
86
86
|
public static func loadFastfile() {
|
87
|
-
if
|
88
|
-
let fastfileType: AnyObject.Type = NSClassFromString(
|
87
|
+
if fastfileInstance == nil {
|
88
|
+
let fastfileType: AnyObject.Type = NSClassFromString(className())!
|
89
89
|
let fastfileAsNSObjectType: NSObject.Type = fastfileType as! NSObject.Type
|
90
90
|
let currentFastfileInstance: Fastfile? = fastfileAsNSObjectType.init() as? Fastfile
|
91
|
-
|
91
|
+
fastfileInstance = currentFastfileInstance
|
92
92
|
}
|
93
93
|
}
|
94
94
|
|
95
|
-
public static func runLane(named: String, parameters: [String
|
95
|
+
public static func runLane(named: String, parameters: [String: String]) -> Bool {
|
96
96
|
log(message: "Running lane: \(named)")
|
97
|
-
|
97
|
+
loadFastfile()
|
98
98
|
|
99
99
|
guard let fastfileInstance: Fastfile = self.fastfileInstance else {
|
100
|
-
let message = "Unable to instantiate class named: \(
|
100
|
+
let message = "Unable to instantiate class named: \(className())"
|
101
101
|
log(message: message)
|
102
102
|
fatalError(message)
|
103
103
|
}
|
104
104
|
|
105
|
-
let currentLanes =
|
105
|
+
let currentLanes = lanes
|
106
106
|
let lowerCasedLaneRequested = named.lowercased()
|
107
107
|
|
108
108
|
guard let laneMethod = currentLanes[lowerCasedLaneRequested] else {
|
109
|
-
let laneNames =
|
109
|
+
let laneNames = laneFunctionNames.map { laneFuctionName in
|
110
110
|
if laneFuctionName.hasSuffix("lanewithoptions:") {
|
111
111
|
return trimLaneWithOptionsFromName(laneName: laneFuctionName)
|
112
112
|
} else {
|
@@ -9,13 +9,9 @@
|
|
9
9
|
//
|
10
10
|
|
11
11
|
class Matchfile: MatchfileProtocol {
|
12
|
-
// If you want to enable `match`, run `fastlane match init`
|
13
|
-
// After, this file will be replaced with a custom implementation that contains values you supplied
|
14
|
-
// during the `init` process, and you won't see this message
|
12
|
+
// If you want to enable `match`, run `fastlane match init`
|
13
|
+
// After, this file will be replaced with a custom implementation that contains values you supplied
|
14
|
+
// during the `init` process, and you won't see this message
|
15
15
|
}
|
16
16
|
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
// Generated with fastlane 2.150.3
|
17
|
+
// Generated with fastlane 2.151.0
|
@@ -1,157 +1,160 @@
|
|
1
1
|
protocol MatchfileProtocol: class {
|
2
|
+
/// Define the profile type, can be appstore, adhoc, development, enterprise, developer_id
|
3
|
+
var type: String { get }
|
2
4
|
|
3
|
-
|
4
|
-
|
5
|
+
/// Create additional cert types needed for macOS installers (valid values: mac_installer_distribution, developer_id_installer)
|
6
|
+
var additionalCertTypes: [String]? { get }
|
5
7
|
|
6
|
-
|
7
|
-
|
8
|
+
/// Only fetch existing certificates and profiles, don't generate new ones
|
9
|
+
var readonly: Bool { get }
|
8
10
|
|
9
|
-
|
10
|
-
|
11
|
+
/// Create a certificate type for Xcode 11 and later (Apple Development or Apple Distribution)
|
12
|
+
var generateAppleCerts: Bool { get }
|
11
13
|
|
12
|
-
|
13
|
-
|
14
|
+
/// Skip syncing provisioning profiles
|
15
|
+
var skipProvisioningProfiles: Bool { get }
|
14
16
|
|
15
|
-
|
16
|
-
|
17
|
+
/// The bundle identifier(s) of your app (comma-separated)
|
18
|
+
var appIdentifier: [String] { get }
|
17
19
|
|
18
|
-
|
19
|
-
|
20
|
+
/// Your Apple ID Username
|
21
|
+
var username: String { get }
|
20
22
|
|
21
|
-
|
22
|
-
|
23
|
+
/// The ID of your Developer Portal team if you're in multiple teams
|
24
|
+
var teamId: String? { get }
|
23
25
|
|
24
|
-
|
25
|
-
|
26
|
+
/// The name of your Developer Portal team if you're in multiple teams
|
27
|
+
var teamName: String? { get }
|
26
28
|
|
27
|
-
|
28
|
-
|
29
|
+
/// Define where you want to store your certificates
|
30
|
+
var storageMode: String { get }
|
29
31
|
|
30
|
-
|
31
|
-
|
32
|
+
/// URL to the git repo containing all the certificates
|
33
|
+
var gitUrl: String { get }
|
32
34
|
|
33
|
-
|
34
|
-
|
35
|
+
/// Specific git branch to use
|
36
|
+
var gitBranch: String { get }
|
35
37
|
|
36
|
-
|
37
|
-
|
38
|
+
/// git user full name to commit
|
39
|
+
var gitFullName: String? { get }
|
38
40
|
|
39
|
-
|
40
|
-
|
41
|
+
/// git user email to commit
|
42
|
+
var gitUserEmail: String? { get }
|
41
43
|
|
42
|
-
|
43
|
-
|
44
|
+
/// Make a shallow clone of the repository (truncate the history to 1 revision)
|
45
|
+
var shallowClone: Bool { get }
|
44
46
|
|
45
|
-
|
46
|
-
|
47
|
+
/// Clone just the branch specified, instead of the whole repo. This requires that the branch already exists. Otherwise the command will fail
|
48
|
+
var cloneBranchDirectly: Bool { get }
|
47
49
|
|
48
|
-
|
49
|
-
|
50
|
+
/// Use a basic authorization header to access the git repo (e.g.: access via HTTPS, GitHub Actions, etc), usually a string in Base64
|
51
|
+
var gitBasicAuthorization: String? { get }
|
50
52
|
|
51
|
-
|
52
|
-
|
53
|
+
/// Use a bearer authorization header to access the git repo (e.g.: access to an Azure Devops repository), usually a string in Base64
|
54
|
+
var gitBearerAuthorization: String? { get }
|
53
55
|
|
54
|
-
|
55
|
-
|
56
|
+
/// Name of the Google Cloud Storage bucket to use
|
57
|
+
var googleCloudBucketName: String? { get }
|
56
58
|
|
57
|
-
|
58
|
-
|
59
|
+
/// Path to the gc_keys.json file
|
60
|
+
var googleCloudKeysFile: String? { get }
|
59
61
|
|
60
|
-
|
61
|
-
|
62
|
+
/// ID of the Google Cloud project to use for authentication
|
63
|
+
var googleCloudProjectId: String? { get }
|
62
64
|
|
63
|
-
|
64
|
-
|
65
|
+
/// Name of the S3 region
|
66
|
+
var s3Region: String? { get }
|
65
67
|
|
66
|
-
|
67
|
-
|
68
|
+
/// S3 access key
|
69
|
+
var s3AccessKey: String? { get }
|
68
70
|
|
69
|
-
|
70
|
-
|
71
|
+
/// S3 secret access key
|
72
|
+
var s3SecretAccessKey: String? { get }
|
71
73
|
|
72
|
-
|
73
|
-
|
74
|
+
/// Name of the S3 bucket
|
75
|
+
var s3Bucket: String? { get }
|
74
76
|
|
75
|
-
|
76
|
-
|
77
|
+
/// Prefix to be used on all objects uploaded to S3
|
78
|
+
var s3ObjectPrefix: String? { get }
|
77
79
|
|
78
|
-
|
79
|
-
|
80
|
+
/// Keychain the items should be imported to
|
81
|
+
var keychainName: String { get }
|
80
82
|
|
81
|
-
|
82
|
-
|
83
|
+
/// This might be required the first time you access certificates on a new mac. For the login/default keychain this is your account password
|
84
|
+
var keychainPassword: String? { get }
|
83
85
|
|
84
|
-
|
85
|
-
|
86
|
+
/// Renew the provisioning profiles every time you run match
|
87
|
+
var force: Bool { get }
|
86
88
|
|
87
|
-
|
88
|
-
|
89
|
+
/// Renew the provisioning profiles if the device count on the developer portal has changed. Ignored for profile type 'appstore'
|
90
|
+
var forceForNewDevices: Bool { get }
|
89
91
|
|
90
|
-
|
91
|
-
|
92
|
+
/// Disables confirmation prompts during nuke, answering them with yes
|
93
|
+
var skipConfirmation: Bool { get }
|
92
94
|
|
93
|
-
|
94
|
-
|
95
|
+
/// Skip generation of a README.md for the created git repository
|
96
|
+
var skipDocs: Bool { get }
|
95
97
|
|
96
|
-
|
97
|
-
|
98
|
+
/// Set the provisioning profile's platform to work with (i.e. ios, tvos, macos)
|
99
|
+
var platform: String { get }
|
98
100
|
|
99
|
-
|
100
|
-
|
101
|
+
/// The name of provisioning profile template. If the developer account has provisioning profile templates (aka: custom entitlements), the template name can be found by inspecting the Entitlements drop-down while creating/editing a provisioning profile (e.g. "Apple Pay Pass Suppression Development")
|
102
|
+
var templateName: String? { get }
|
101
103
|
|
102
|
-
|
103
|
-
|
104
|
+
/// A custom name for the provisioning profile. This will replace the default provisioning profile name if specified
|
105
|
+
var profileName: String? { get }
|
104
106
|
|
105
|
-
|
106
|
-
|
107
|
+
/// Should the command fail if it was about to create a duplicate of an existing provisioning profile. It can happen due to issues on Apple Developer Portal, when profile to be recreated was not properly deleted first
|
108
|
+
var failOnNameTaken: Bool { get }
|
107
109
|
|
108
|
-
|
109
|
-
|
110
|
+
/// Path in which to export certificates, key and profile
|
111
|
+
var outputPath: String? { get }
|
110
112
|
|
111
|
-
|
112
|
-
|
113
|
+
/// Print out extra information and all commands
|
114
|
+
var verbose: Bool { get }
|
113
115
|
}
|
114
116
|
|
115
117
|
extension MatchfileProtocol {
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
118
|
+
var type: String { return "development" }
|
119
|
+
var additionalCertTypes: [String]? { return nil }
|
120
|
+
var readonly: Bool { return false }
|
121
|
+
var generateAppleCerts: Bool { return true }
|
122
|
+
var skipProvisioningProfiles: Bool { return false }
|
123
|
+
var appIdentifier: [String] { return [] }
|
124
|
+
var username: String { return "" }
|
125
|
+
var teamId: String? { return nil }
|
126
|
+
var teamName: String? { return nil }
|
127
|
+
var storageMode: String { return "git" }
|
128
|
+
var gitUrl: String { return "" }
|
129
|
+
var gitBranch: String { return "master" }
|
130
|
+
var gitFullName: String? { return nil }
|
131
|
+
var gitUserEmail: String? { return nil }
|
132
|
+
var shallowClone: Bool { return false }
|
133
|
+
var cloneBranchDirectly: Bool { return false }
|
134
|
+
var gitBasicAuthorization: String? { return nil }
|
135
|
+
var gitBearerAuthorization: String? { return nil }
|
136
|
+
var googleCloudBucketName: String? { return nil }
|
137
|
+
var googleCloudKeysFile: String? { return nil }
|
138
|
+
var googleCloudProjectId: String? { return nil }
|
139
|
+
var s3Region: String? { return nil }
|
140
|
+
var s3AccessKey: String? { return nil }
|
141
|
+
var s3SecretAccessKey: String? { return nil }
|
142
|
+
var s3Bucket: String? { return nil }
|
143
|
+
var s3ObjectPrefix: String? { return nil }
|
144
|
+
var keychainName: String { return "login.keychain" }
|
145
|
+
var keychainPassword: String? { return nil }
|
146
|
+
var force: Bool { return false }
|
147
|
+
var forceForNewDevices: Bool { return false }
|
148
|
+
var skipConfirmation: Bool { return false }
|
149
|
+
var skipDocs: Bool { return false }
|
150
|
+
var platform: String { return "ios" }
|
151
|
+
var templateName: String? { return nil }
|
152
|
+
var profileName: String? { return nil }
|
153
|
+
var failOnNameTaken: Bool { return false }
|
154
|
+
var outputPath: String? { return nil }
|
155
|
+
var verbose: Bool { return false }
|
153
156
|
}
|
154
157
|
|
155
158
|
// Please don't remove the lines below
|
156
159
|
// They are used to detect outdated files
|
157
|
-
// FastlaneRunnerAPIVersion [0.9.
|
160
|
+
// FastlaneRunnerAPIVersion [0.9.19]
|