From 475f3dc2a51461f58291197a43d46346f7fc1e68 Mon Sep 17 00:00:00 2001 From: Andrew McKnight Date: Tue, 26 Sep 2023 17:02:20 -0800 Subject: [PATCH] zip app bundle --- .gitignore | 3 ++- Makefile | 2 ++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index b3306ba..23ff1c6 100644 --- a/.gitignore +++ b/.gitignore @@ -4,4 +4,5 @@ /EmpowerPlant.xcworkspace/xcuserdata .env build/ -release-build.log \ No newline at end of file +release-build.log +EmpowerPlant_release.zip \ No newline at end of file diff --git a/Makefile b/Makefile index c421841..84051bb 100644 --- a/Makefile +++ b/Makefile @@ -19,3 +19,5 @@ init: release: CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO xcodebuild -workspace EmpowerPlant.xcworkspace -scheme EmpowerPlant -configuration Release -derivedDataPath build -sdk iphoneos clean build 2>&1 | tee release-build.log | xcbeautify + zip -r EmpowerPlant_release.zip ./build/Build/Products/Release-iphoneos/EmpowerPlant.app + @echo "\nBuild completed. Create a new release in GitHub and upload ./EmpowerPlant_release.zip."