Skip to content

Commit e064b3e

Browse files
fix cert type
1 parent 33668fe commit e064b3e

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58658,7 +58658,7 @@ async function signMacOSAppBundle(projectRef) {
5865858658
if (!stat.isDirectory()) {
5865958659
throw new Error(`Not a valid app bundle: ${appPath}`);
5866058660
}
58661-
await (0, AppleCredential_1.GetOrCreateSigningCertificate)(projectRef, 'MAC_APP_DEVELOPMENT');
58661+
await (0, AppleCredential_1.GetOrCreateSigningCertificate)(projectRef, 'DEVELOPER_ID_APPLICATION');
5866258662
const signAppBundlePath = __nccwpck_require__.ab + "sign-app-bundle.sh";
5866358663
let codesignOutput = '';
5866458664
const codesignExitCode = await (0, exec_1.exec)('sh', [__nccwpck_require__.ab + "sign-app-bundle.sh", appPath, projectRef.entitlementsPath, projectRef.credential.keychainPath, projectRef.credential.name], {

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/xcode.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -493,7 +493,7 @@ async function signMacOSAppBundle(projectRef: XcodeProject): Promise<void> {
493493
if (!stat.isDirectory()) {
494494
throw new Error(`Not a valid app bundle: ${appPath}`);
495495
}
496-
await GetOrCreateSigningCertificate(projectRef, 'MAC_APP_DEVELOPMENT');
496+
await GetOrCreateSigningCertificate(projectRef, 'DEVELOPER_ID_APPLICATION');
497497
const signAppBundlePath = path.join(__dirname, 'sign-app-bundle.sh');
498498
let codesignOutput = '';
499499
const codesignExitCode = await exec('sh', [signAppBundlePath, appPath, projectRef.entitlementsPath, projectRef.credential.keychainPath, projectRef.credential.name], {

0 commit comments

Comments
 (0)