Skip to content
7 changes: 6 additions & 1 deletion fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,12 @@ platform :ios do
)
end

match(
api_key: api_key,
type: "development",
readonly: ENV["CI"] == "true"
)

match(
api_key: api_key,
type: "appstore",
Expand All @@ -55,7 +61,6 @@ platform :ios do
project: "DevLog.xcodeproj",
scheme: "DevLog",
export_method: "app-store",
codesigning_identity: "Apple Distribution",
xcargs: "-skipPackagePluginValidation"
)

Expand Down
Loading