Skip to content

Commit

Permalink
Update Fastfile
Browse files Browse the repository at this point in the history
  • Loading branch information
FirstDo authored Sep 20, 2024
1 parent e5ce14c commit 881dd2f
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,30 @@ platform :ios do

new_build_number = latest_testflight_build_number + 1

slack(
message: "현재진행중인 버전입니다",
channel: "#알림-ios-배포",
slack_url: "#{SLACK_HOOK_URL}",
username: "대신 배포해주는 고양이",
icon_url: "https://avatars.githubusercontent.com/u/21079970?v=4",
payload: {
"Build Date" => Time.new.to_s,
},
attachment_properties: {
fields: [
{
title: "Scheme",
value: "Release",
},
{
title: "Build Number",
value: "#{new_build_number.to_s}",
}
]
},
success: true
)

# ✅ 빌드
build_app(
workspace: "#{APP_NAME}.xcworkspace",
Expand Down

0 comments on commit 881dd2f

Please sign in to comment.