Skip to content

Commit 11c0718

Browse files
committed
Disable development match on CI
1 parent 9c41eff commit 11c0718

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

Fastlane/Fastfile

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -121,11 +121,13 @@ platform :ios do
121121
register_devices(devices_file: "Fastlane/devices.txt")
122122
end
123123

124-
match(
125-
type: "development",
126-
readonly: !options[:master],
127-
force_for_new_devices: options[:master]
128-
)
124+
unless ENV['CI']
125+
match(
126+
type: "development",
127+
readonly: !options[:master],
128+
force_for_new_devices: options[:master]
129+
)
130+
end
129131

130132
match(
131133
type: "appstore",

0 commit comments

Comments
 (0)