Skip to content

Commit d289b0f

Browse files
authored
revert: Remove broken sentry_upload_build calls in Fastfile (#37)
This reverts commit ad5eff1.
1 parent 059d2af commit d289b0f

File tree

2 files changed

+19
-19
lines changed

2 files changed

+19
-19
lines changed

Gemfile.lock

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
GIT
22
remote: https://github.com/getsentry/sentry-fastlane-plugin.git
3-
revision: 815cc447666b9c54cb32b3ffa864f453d68aaebb
3+
revision: 2dee10590e098f551d37de176a9acd9bca665ae2
44
branch: master
55
specs:
66
fastlane-plugin-sentry (1.33.0)
@@ -19,19 +19,19 @@ GEM
1919
artifactory (3.0.17)
2020
atomos (0.1.3)
2121
aws-eventstream (1.4.0)
22-
aws-partitions (1.1159.0)
23-
aws-sdk-core (3.232.0)
22+
aws-partitions (1.1166.0)
23+
aws-sdk-core (3.233.0)
2424
aws-eventstream (~> 1, >= 1.3.0)
2525
aws-partitions (~> 1, >= 1.992.0)
2626
aws-sigv4 (~> 1.9)
2727
base64
2828
bigdecimal
2929
jmespath (~> 1, >= 1.6.1)
3030
logger
31-
aws-sdk-kms (1.112.0)
31+
aws-sdk-kms (1.113.0)
3232
aws-sdk-core (~> 3, >= 3.231.0)
3333
aws-sigv4 (~> 1.5)
34-
aws-sdk-s3 (1.199.0)
34+
aws-sdk-s3 (1.199.1)
3535
aws-sdk-core (~> 3, >= 3.231.0)
3636
aws-sdk-kms (~> 1)
3737
aws-sigv4 (~> 1.5)
@@ -172,7 +172,7 @@ GEM
172172
httpclient (2.9.0)
173173
mutex_m
174174
jmespath (1.6.2)
175-
json (2.13.2)
175+
json (2.15.0)
176176
jwt (2.10.2)
177177
base64
178178
logger (1.7.0)

fastlane/Fastfile

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,12 @@ platform :ios do
3939
)
4040

4141
# Upload the archive to Sentry for further analysis
42-
# sentry_upload_build(
43-
# auth_token: ENV["SENTRY_AUTH_TOKEN"],
44-
# org_slug: "techprimate",
45-
# project_slug: "flinky",
46-
# xcarchive_path: "./Flinky.xcarchive",
47-
# ) if is_ci
42+
sentry_upload_build(
43+
auth_token: ENV["SENTRY_AUTH_TOKEN"],
44+
org_slug: "techprimate",
45+
project_slug: "flinky",
46+
xcarchive_path: "./Flinky.xcarchive",
47+
) if is_ci
4848
end
4949

5050
desc "Generate app icon sizes from source image using fastlane-plugin-appicon"
@@ -214,13 +214,13 @@ platform :ios do
214214
)
215215

216216
# Upload the xcarchive to Sentry for further analysis
217-
# sentry_upload_build(
218-
# auth_token: ENV["SENTRY_AUTH_TOKEN"],
219-
# org_slug: "techprimate",
220-
# project_slug: "flinky",
221-
# xcarchive_path: "./Flinky.xcarchive",
222-
# )
223-
217+
sentry_upload_build(
218+
auth_token: ENV["SENTRY_AUTH_TOKEN"],
219+
org_slug: "techprimate",
220+
project_slug: "flinky",
221+
xcarchive_path: "./Flinky.xcarchive",
222+
)
223+
224224
# Associate commits with the release
225225
sentry_set_commits(
226226
auth_token: ENV["SENTRY_AUTH_TOKEN"],

0 commit comments

Comments
 (0)