Skip to content

Commit

Permalink
Switch notarization to app-specific password
Browse files Browse the repository at this point in the history
  • Loading branch information
spensbot committed Nov 30, 2023
1 parent 768bfda commit 6c2b675
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .erb/scripts/notarize.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ exports.default = async function notarizeMacos(context) {
await notarize({
appBundleId: build.appId,
appPath: `${appOutDir}/${appName}.app`,
appleApiIssuer: process.env.APPLE_API_ISSUER,
appleApiKeyId: process.env.APPLE_API_KEY_ID,
appleApiKey: process.env.APPLE_API_KEY,
// appleId: process.env.APPLE_ID,
// appleIdPassword: process.env.APPLE_ID_PASS,
// appleApiIssuer: process.env.APPLE_API_ISSUER,
// appleApiKeyId: process.env.APPLE_API_KEY_ID,
// appleApiKey: process.env.APPLE_API_KEY,
appleId: process.env.APPLE_ID,
appleIdPassword: process.env.APPLE_ID_PASS,
})
}

0 comments on commit 6c2b675

Please sign in to comment.