Skip to content

Commit

Permalink
revert to new creds and better node imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Urook committed Oct 3, 2023
1 parent 6855798 commit 1008853
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions afterSignHook.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// See: https://medium.com/@TwitterArchiveEraser/notarize-electron-apps-7a5f988406db

const fs = require('fs');
const path = require('path');
const fs = require('node:fs');
const path = require('node:path');
const electronNotarize = require('@electron/notarize');

module.exports = async function (params) {
Expand Down Expand Up @@ -30,8 +30,8 @@ module.exports = async function (params) {
try {
await electronNotarize.notarize({
appPath,
appleId: process.env.appleId,
appleIdPassword: process.env.appleIdPassword,
appleId: process.env.APPLE_DEV_USER,
appleIdPassword: process.env.APPLE_DEV_PASSWORD,
teamId: process.env.appleTeamId,
tool
});
Expand Down

0 comments on commit 1008853

Please sign in to comment.