Skip to content

Commit 92275db

Browse files
committed
fix: Update build scripts to use unified build process for debug and release
1 parent efc11da commit 92275db

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

fastlane/Fastfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ platform :mac do
1717
desc "Build ClickIt app (Debug)"
1818
lane :build_debug do
1919
Dir.chdir("..") do
20-
sh("./build_app.sh debug")
20+
sh("./build_app_unified.sh debug spm")
2121
end
2222
UI.success("Debug build completed! 🎉")
2323
UI.message("App location: dist/ClickIt.app")
@@ -26,7 +26,7 @@ platform :mac do
2626
desc "Build ClickIt app (Release)"
2727
lane :build_release do
2828
Dir.chdir("..") do
29-
sh("./build_app.sh release")
29+
sh("./build_app_unified.sh release spm")
3030
end
3131
UI.success("Release build completed! 🚀")
3232
UI.message("App location: dist/ClickIt.app")

0 commit comments

Comments
 (0)