fix(actions): update macOS build workflow to disable automatic code signing and skip signing executables
Some checks failed
Test macOS Build Action / test-macos-build (push) Failing after 13m57s

This commit is contained in:
Ozgur 2025-04-15 21:05:51 +02:00
parent 619d4d8298
commit 4a71488bea
No known key found for this signature in database
GPG Key ID: 66CDF27505A35546
3 changed files with 7 additions and 0 deletions

View File

@ -361,6 +361,9 @@ EnableCodeCoverage=False
EnableCodeCoveragePath=(Path="") EnableCodeCoveragePath=(Path="")
ForwardShading=False ForwardShading=False
UseFastCopyToResolve=True UseFastCopyToResolve=True
bAutomaticallySignBuilds=False
bUseSIPSafeRunloop=True
CodeSigningIdentity=""
[/Script/MacTargetPlatform.XcodeProjectSettings] [/Script/MacTargetPlatform.XcodeProjectSettings]
bMacSignToRunLocally=False bMacSignToRunLocally=False

View File

@ -27,6 +27,9 @@ public class LuckyWorldTarget : TargetRules
GlobalDefinitions.Add("APP_BUNDLE_IDENTIFIER=com.luckyrobots.luckyworld"); GlobalDefinitions.Add("APP_BUNDLE_IDENTIFIER=com.luckyrobots.luckyworld");
GlobalDefinitions.Add("APP_BUNDLE_NAME=LuckyWorld"); GlobalDefinitions.Add("APP_BUNDLE_NAME=LuckyWorld");
GlobalDefinitions.Add("APP_BUNDLE_DISPLAY_NAME=LuckyWorld"); GlobalDefinitions.Add("APP_BUNDLE_DISPLAY_NAME=LuckyWorld");
// Disable automatic code signing
bDisableAutomaticCodeSigning = true;
} }
} }
} }

View File

@ -53,6 +53,7 @@ echo "🔨 Starting build process..."
-platform=Mac \ -platform=Mac \
-installed \ -installed \
-stage \ -stage \
-skipStage=SignExecutables \
-archive \ -archive \
-package \ -package \
-build \ -build \