Skip to content

Commit 6c7d3f0

Browse files
committed
chore: #1 - fastfile discord 알림 함수 수정
1 parent 9d257df commit 6c7d3f0

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

fastlane/Fastfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ platform :ios do
3131
xcargs: "CODE_SIGNING_ALLOWED=NO"
3232
)
3333
# 성공 시 CI용 메시지 전송
34-
send_discord_message(message: "CI 빌드 체크 성공! 코드가 안전합니다. ✅", success: true, type: "CI")
34+
send_discord_message(message: "CI 빌드 체크 성공!", success: true, type: "CI")
3535
rescue => exception
3636
# 실패 시 에러 내용과 함께 알림
3737
send_discord_message(message: "CI 빌드 실패: #{exception}", success: false, type: "CI")
@@ -75,7 +75,7 @@ end
7575
# 🔔 Discord 메시지 전송 함수 (공통)
7676
# ---------------------------------------------------------
7777
def send_discord_message(message:, success:, type: "CI")
78-
project_path = "Projects/App/App.xcodeproj"
78+
project_path = "./Projects/App/App.xcodeproj"
7979

8080
# 프로젝트 파일이 존재하는지 확인 (에러 방지용 로그)
8181
unless File.exist?(project_path)

0 commit comments

Comments
 (0)