Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
12 changes: 6 additions & 6 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
GIT
remote: https://github.com/getsentry/sentry-fastlane-plugin.git
revision: 815cc447666b9c54cb32b3ffa864f453d68aaebb
revision: 2dee10590e098f551d37de176a9acd9bca665ae2
branch: master
specs:
fastlane-plugin-sentry (1.33.0)
Expand All @@ -19,19 +19,19 @@ GEM
artifactory (3.0.17)
atomos (0.1.3)
aws-eventstream (1.4.0)
aws-partitions (1.1159.0)
aws-sdk-core (3.232.0)
aws-partitions (1.1166.0)
aws-sdk-core (3.233.0)
aws-eventstream (~> 1, >= 1.3.0)
aws-partitions (~> 1, >= 1.992.0)
aws-sigv4 (~> 1.9)
base64
bigdecimal
jmespath (~> 1, >= 1.6.1)
logger
aws-sdk-kms (1.112.0)
aws-sdk-kms (1.113.0)
aws-sdk-core (~> 3, >= 3.231.0)
aws-sigv4 (~> 1.5)
aws-sdk-s3 (1.199.0)
aws-sdk-s3 (1.199.1)
aws-sdk-core (~> 3, >= 3.231.0)
aws-sdk-kms (~> 1)
aws-sigv4 (~> 1.5)
Expand Down Expand Up @@ -172,7 +172,7 @@ GEM
httpclient (2.9.0)
mutex_m
jmespath (1.6.2)
json (2.13.2)
json (2.15.0)
jwt (2.10.2)
base64
logger (1.7.0)
Expand Down
26 changes: 13 additions & 13 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,13 +214,13 @@ 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(
auth_token: ENV["SENTRY_AUTH_TOKEN"],
Expand Down
Loading