Skip to content

Commit

Permalink
chore: Add match_local to Fastfile
Browse files Browse the repository at this point in the history
Add a new task to Fastfile that recreate certificates and provisioning profiles.
  • Loading branch information
brustolin authored Nov 8, 2022
1 parent 512ef36 commit f444dc4
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,34 @@ platform :ios do
)
end

desc "Run match for local development"
lane :match_local do
match(
type: "development",
app_identifier: ["io.sentry.sample.iOS-Swift",
"io.sentry.sample.iOS-Swift.Clip",
"io.sentry.iOS-SwiftUITests.xctrunner",
"io.sentry.sample.movies.ProfileDataGeneratorUITest",
"io.sentry.sample.TrendingMovies",
"io.sentry.cocoa.perf-test-app-plain",
"io.sentry.*",
"io.sentry.iOS-Benchmarking.xctrunner",
"io.sentry.cocoa.perf-test-app-sentry"]
)
match(
type: "appstore",
app_identifier: ["io.sentry.sample.iOS-Swift",
"io.sentry.sample.iOS-Swift.Clip",
"io.sentry.iOS-SwiftUITests.xctrunner",
"io.sentry.sample.movies.ProfileDataGeneratorUITest",
"io.sentry.sample.TrendingMovies",
"io.sentry.cocoa.perf-test-app-plain",
"io.sentry.*",
"io.sentry.iOS-Benchmarking.xctrunner",
"io.sentry.cocoa.perf-test-app-sentry"]
)
end

desc "Build iOS-Swift with Release"
lane :build_ios_swift do

Expand Down

0 comments on commit f444dc4

Please sign in to comment.