File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -58329,13 +58329,13 @@ async function ArchiveXcodeProject(projectRef) {
5832958329 if (teamId) {
5833058330 archiveArgs.push(`DEVELOPMENT_TEAM=${teamId}`);
5833158331 }
58332- if (signingIdentity) {
58333- archiveArgs.push(`CODE_SIGN_IDENTITY=${signingIdentity}`, `OTHER_CODE_SIGN_FLAGS=--keychain ${keychainPath}`);
58334- }
58335- else {
58336- archiveArgs.push(`CODE_SIGN_IDENTITY=-`);
58337- }
5833858332 if (!projectRef.isSteamBuild) {
58333+ if (signingIdentity) {
58334+ archiveArgs.push(`CODE_SIGN_IDENTITY=${signingIdentity}`, `OTHER_CODE_SIGN_FLAGS=--keychain ${keychainPath}`);
58335+ }
58336+ else {
58337+ archiveArgs.push(`CODE_SIGN_IDENTITY=-`);
58338+ }
5833958339 archiveArgs.push(`CODE_SIGN_STYLE=${provisioningProfileUUID || signingIdentity ? 'Manual' : 'Automatic'}`);
5834058340 if (provisioningProfileUUID) {
5834158341 archiveArgs.push(`PROVISIONING_PROFILE=${provisioningProfileUUID}`);
Original file line number Diff line number Diff line change @@ -342,15 +342,15 @@ export async function ArchiveXcodeProject(projectRef: XcodeProject): Promise<Xco
342342 if ( teamId ) {
343343 archiveArgs . push ( `DEVELOPMENT_TEAM=${ teamId } ` ) ;
344344 }
345- if ( signingIdentity ) {
346- archiveArgs . push (
347- `CODE_SIGN_IDENTITY=${ signingIdentity } ` ,
348- `OTHER_CODE_SIGN_FLAGS=--keychain ${ keychainPath } `
349- ) ;
350- } else {
351- archiveArgs . push ( `CODE_SIGN_IDENTITY=-` ) ;
352- }
353345 if ( ! projectRef . isSteamBuild ) {
346+ if ( signingIdentity ) {
347+ archiveArgs . push (
348+ `CODE_SIGN_IDENTITY=${ signingIdentity } ` ,
349+ `OTHER_CODE_SIGN_FLAGS=--keychain ${ keychainPath } `
350+ ) ;
351+ } else {
352+ archiveArgs . push ( `CODE_SIGN_IDENTITY=-` ) ;
353+ }
354354 archiveArgs . push (
355355 `CODE_SIGN_STYLE=${ provisioningProfileUUID || signingIdentity ? 'Manual' : 'Automatic' } `
356356 ) ;
You can’t perform that action at this time.
0 commit comments