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
Some checks failed
Test macOS Build Action / test-macos-build (push) Failing after 13m57s
This commit is contained in:
parent
619d4d8298
commit
4a71488bea
@ -361,6 +361,9 @@ EnableCodeCoverage=False
|
||||
EnableCodeCoveragePath=(Path="")
|
||||
ForwardShading=False
|
||||
UseFastCopyToResolve=True
|
||||
bAutomaticallySignBuilds=False
|
||||
bUseSIPSafeRunloop=True
|
||||
CodeSigningIdentity=""
|
||||
|
||||
[/Script/MacTargetPlatform.XcodeProjectSettings]
|
||||
bMacSignToRunLocally=False
|
||||
|
@ -27,6 +27,9 @@ public class LuckyWorldTarget : TargetRules
|
||||
GlobalDefinitions.Add("APP_BUNDLE_IDENTIFIER=com.luckyrobots.luckyworld");
|
||||
GlobalDefinitions.Add("APP_BUNDLE_NAME=LuckyWorld");
|
||||
GlobalDefinitions.Add("APP_BUNDLE_DISPLAY_NAME=LuckyWorld");
|
||||
|
||||
// Disable automatic code signing
|
||||
bDisableAutomaticCodeSigning = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -53,6 +53,7 @@ echo "🔨 Starting build process..."
|
||||
-platform=Mac \
|
||||
-installed \
|
||||
-stage \
|
||||
-skipStage=SignExecutables \
|
||||
-archive \
|
||||
-package \
|
||||
-build \
|
||||
|
Loading…
x
Reference in New Issue
Block a user