|
log.Debugf("setting CODE_SIGN_STYLE unspecified for target (%s), defaulting to `Manual`", targetName) |
Ahoy! Found this while debugging my workflow.
XCode projects that that don't specify CODE_SIGN_STYLE use Automatic code signing per iOS defaults.
Steps like xcode_archive end up setting up Manual code signing for these projects as a result, leading to unexpected code signing issues later in the build.
Not sure if other Apple platforms have different defaults for CODE_SIGN_STYLE.
Explicitly setting CODE_SIGN_STYLE is a workaround.