Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,12 @@ platform :ios do
)

# Upload the archive to Sentry for further analysis
# sentry_upload_build(
# auth_token: ENV["SENTRY_AUTH_TOKEN"],
# org_slug: "techprimate",
# project_slug: "flinky",
# xcarchive_path: "./Flinky.xcarchive",
# ) if is_ci
sentry_upload_build(
auth_token: ENV["SENTRY_AUTH_TOKEN"],
org_slug: "techprimate",
project_slug: "flinky",
xcarchive_path: "./Flinky.xcarchive",
) if is_ci
end

desc "Generate app icon sizes from source image using fastlane-plugin-appicon"
Expand Down Expand Up @@ -214,12 +214,12 @@ platform :ios do
)

# Upload the xcarchive to Sentry for further analysis
# sentry_upload_build(
# auth_token: ENV["SENTRY_AUTH_TOKEN"],
# org_slug: "techprimate",
# project_slug: "flinky",
# xcarchive_path: "./Flinky.xcarchive",
# )
sentry_upload_build(
auth_token: ENV["SENTRY_AUTH_TOKEN"],
org_slug: "techprimate",
project_slug: "flinky",
xcarchive_path: "./Flinky.xcarchive",
)

# Associate commits with the release
sentry_set_commits(
Expand Down
Loading