Skip to content

Commit 5dc9ce5

Browse files
committed
macos26 , Ruby 3.4 버전대 flutter ios 빌드 및 changeLog 업데이트 하는 경우 Fastlane에서 FrozenError 발생 : feat : .dup 추가하여 해결2 whats up 항목에 추가로 수정 Cassiiopeia/SUH-DEVOPS-TEMPLATE#189
1 parent ef2248a commit 5dc9ce5

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

ios/fastlane/Fastfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -51,18 +51,18 @@ platform :ios do
5151

5252
UI.message("📦 IPA 경로: #{ipa_path}")
5353

54-
# 릴리즈 노트 설정
55-
release_notes = ENV["RELEASE_NOTES"] || "새로운 빌드가 업로드되었습니다."
54+
# 릴리즈 노트 설정 (Ruby 3.4+ frozen string 호환을 위해 .dup 사용)
55+
release_notes = (ENV["RELEASE_NOTES"] || "새로운 빌드가 업로드되었습니다.").dup
5656
UI.message("📝 릴리즈 노트: #{release_notes}")
5757

5858
# TestFlight 업로드 (upload_to_testflight = pilot)
5959
upload_to_testflight(
6060
api_key: api_key,
6161
ipa: ipa_path,
62-
changelog: release_notes,
62+
changelog: release_notes.dup,
6363
localized_build_info: {
64-
"ko" => { whats_new: release_notes },
65-
"en-US" => { whats_new: release_notes }
64+
"ko" => { whats_new: release_notes.dup },
65+
"en-US" => { whats_new: release_notes.dup }
6666
},
6767
skip_waiting_for_build_processing: ENV["SKIP_WAITING_FOR_BUILD_PROCESSING"] == "true",
6868
distribute_external: false,

0 commit comments

Comments
 (0)