Skip to content

Commit

Permalink
Merge branch 'develop' into release/2.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Elizaveta Semenova committed Feb 19, 2024
2 parents 4b03647 + 986e590 commit 0a3b819
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ def notify(version, message)
"-v",
"-H", "Content-Type: application/json",
"-H", "Authorization: Bearer #{DISCORD_MESSAGE_API_BEARER_TOKEN}",
"-d", "{\"message\":\"#{message}\", \"channel_id\":#{DISCORD_IOS_BUILD_CHANNEL_ID}}",
"-d", "{\"message\":\"[KeyApp] #{message}\", \"channel_id\":#{DISCORD_IOS_BUILD_CHANNEL_ID}}",
DISCORD_MESSAGE_API_ENDPOINT
)
rescue => ex
Expand Down Expand Up @@ -367,7 +367,7 @@ platform :ios do
"curl",
"-v",
"-H", "Content-Type: application/json",
"-d", "{\"message\":\"Version **#{full_version}#{build_rc_suffix}** is being built and sent to Testflight...\", \"channel_id\":#{DISCORD_IOS_BUILD_CHANNEL_ID}}",
"-d", "{\"message\":\"[KeyApp] Version **#{full_version}#{build_rc_suffix}** is being built and sent to Testflight...\", \"channel_id\":#{DISCORD_IOS_BUILD_CHANNEL_ID}}",
DISCORD_MESSAGE_API_ENDPOINT
)
rescue => ex
Expand Down Expand Up @@ -416,7 +416,7 @@ platform :ios do
"-v",
"-H", "Content-Type: application/json",
"-H", "Authorization: Bearer #{DISCORD_MESSAGE_API_BEARER_TOKEN}",
"-d", "{\"message\":\"#{message}\", \"channel_id\":#{DISCORD_IOS_BUILD_CHANNEL_ID}}",
"-d", "{\"message\":\"[KeyApp] #{message}\", \"channel_id\":#{DISCORD_IOS_BUILD_CHANNEL_ID}}",
DISCORD_MESSAGE_API_ENDPOINT
)
rescue => ex
Expand Down

0 comments on commit 0a3b819

Please sign in to comment.