We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d4c63e8 + e2cc800 commit 218f61cCopy full SHA for 218f61c
fastlane/platforms/ios.rb
@@ -29,9 +29,14 @@
29
desc 'Submit a new nightly Beta Build to Testflight'
30
lane :nightly do
31
build
32
- # TestFliht is returning 500 errors when we upload changelogs again.
33
- testflight(#changelog: make_changelog,
34
- distribute_external: false)
+ # TestFlight is returning 500 errors when we upload changelogs again.
+ begin
+ testflight(changelog: make_changelog,
35
+ distribute_external: false)
36
+ rescue => error
37
+ puts "Changelog failed to upload:"
38
+ puts error
39
+ end
40
end
41
42
desc 'Upload dYSM symbols to Bugsnag from Apple'
0 commit comments