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="")
|
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
|
||||||
|
@ -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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -53,6 +53,7 @@ echo "🔨 Starting build process..."
|
|||||||
-platform=Mac \
|
-platform=Mac \
|
||||||
-installed \
|
-installed \
|
||||||
-stage \
|
-stage \
|
||||||
|
-skipStage=SignExecutables \
|
||||||
-archive \
|
-archive \
|
||||||
-package \
|
-package \
|
||||||
-build \
|
-build \
|
||||||
|
Loading…
x
Reference in New Issue
Block a user