Skip to content

Commit f444dc4

Browse files
authored
chore: Add match_local to Fastfile
Add a new task to Fastfile that recreate certificates and provisioning profiles.
1 parent 512ef36 commit f444dc4

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

fastlane/Fastfile

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,34 @@ platform :ios do
4545
)
4646
end
4747

48+
desc "Run match for local development"
49+
lane :match_local do
50+
match(
51+
type: "development",
52+
app_identifier: ["io.sentry.sample.iOS-Swift",
53+
"io.sentry.sample.iOS-Swift.Clip",
54+
"io.sentry.iOS-SwiftUITests.xctrunner",
55+
"io.sentry.sample.movies.ProfileDataGeneratorUITest",
56+
"io.sentry.sample.TrendingMovies",
57+
"io.sentry.cocoa.perf-test-app-plain",
58+
"io.sentry.*",
59+
"io.sentry.iOS-Benchmarking.xctrunner",
60+
"io.sentry.cocoa.perf-test-app-sentry"]
61+
)
62+
match(
63+
type: "appstore",
64+
app_identifier: ["io.sentry.sample.iOS-Swift",
65+
"io.sentry.sample.iOS-Swift.Clip",
66+
"io.sentry.iOS-SwiftUITests.xctrunner",
67+
"io.sentry.sample.movies.ProfileDataGeneratorUITest",
68+
"io.sentry.sample.TrendingMovies",
69+
"io.sentry.cocoa.perf-test-app-plain",
70+
"io.sentry.*",
71+
"io.sentry.iOS-Benchmarking.xctrunner",
72+
"io.sentry.cocoa.perf-test-app-sentry"]
73+
)
74+
end
75+
4876
desc "Build iOS-Swift with Release"
4977
lane :build_ios_swift do
5078

0 commit comments

Comments
 (0)