Skip to content

Commit

Permalink
feat: 타임존 병합
Browse files Browse the repository at this point in the history
  • Loading branch information
CChuYong committed Jan 28, 2024
1 parent b2b56bb commit 7dd468e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ platform :android do
success: true,
slack_url: ENV["SLACK_WEBHOOK_URL"],
payload: {
"빌드 날짜" => Time.new.to_s,
"빌드 날짜" => Time.now.getlocal('+09:00').to_s,
"배포 버전" => "#{versionName}(#{versionCode})"
}
)
Expand All @@ -100,7 +100,7 @@ platform :android do
success: false,
slack_url: ENV["SLACK_WEBHOOK_URL"],
payload: {
"빌드 날짜" => Time.new.to_s,
"빌드 날짜" => Time.now.getlocal('+09:00').to_s,
"배포 버전" => "#{versionName}(#{versionCode})",
"에러" => exception,
}
Expand Down

0 comments on commit 7dd468e

Please sign in to comment.