Type Alias: SigningResult
SigningResult =
SignFileResult|"skipped:filtered"|"skipped:disabled"|"skipped:unsupported"
Result of a signing operation, unified across the platform packagers' signing logic (SignFileResult extended with the skip reasons that are decided before any signing tooling is invoked). Failures are always thrown, never returned:
skipped:filtered— the file does not match the signing filters (e.g. the WindowssignExtsfilter)skipped:disabled— signing is explicitly disabled (win.sign: false/null, or macOSsign/sign.identityset tonull)skipped:unsupported— signing is not possible in this build environment (e.g. macOS signing on a non-mac host, or the pull-request CI guard) or is not implemented by this platform packager (the basePlatformPackager.signApp, e.g. Linux)