Skip to content

Commit 3e2e858

Browse files
committed
fix: Set environment variables for CI build to disable code signing and fix deployment target
1 parent bf739fb commit 3e2e858

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/cicd.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,11 @@ jobs:
147147

148148
- name: 🏗️ Build App Bundle
149149
run: |
150+
# Set environment variables for CI build (disable code signing, fix deployment target)
151+
export CODE_SIGN_IDENTITY=""
152+
export CODE_SIGNING_REQUIRED=NO
153+
export CODE_SIGNING_ALLOWED=NO
154+
export MACOSX_DEPLOYMENT_TARGET=14.0
150155
./build_app_unified.sh release
151156
echo "✅ App bundle created"
152157
@@ -384,6 +389,11 @@ jobs:
384389

385390
- name: 🏗️ Build App Bundle
386391
run: |
392+
# Set environment variables for CI build (disable code signing, fix deployment target)
393+
export CODE_SIGN_IDENTITY=""
394+
export CODE_SIGNING_REQUIRED=NO
395+
export CODE_SIGNING_ALLOWED=NO
396+
export MACOSX_DEPLOYMENT_TARGET=14.0
387397
./build_app_unified.sh release
388398
echo "✅ App bundle created"
389399

0 commit comments

Comments
 (0)