Skip to content

Commit

Permalink
Fixed notarize script, added env vars
Browse files Browse the repository at this point in the history
  • Loading branch information
coltoneshaw committed Oct 4, 2021
1 parent 2a165b6 commit 6173f66
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,5 @@ dist/*
build/*
/src/main-app.js
release/*
commit.sh
commit.sh
.env
4 changes: 2 additions & 2 deletions scripts/notarize.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ exports.default = async function notarizing(context) {
return await notarize({
appBundleId: 'com.savvytoolbelt.3cportfoliomanager',
appPath: `${appOutDir}/${appName}.app`,
appleId: '[email protected]',
appleIdPassword: 'cyuj-jlos-zcjw-lkoy',
appleId: process.env.APPLEID,
appleIdPassword: process.env.APPLEIDPASS,
tool: 'notarytool',
teamId: '4UHVHSRL22'
});
Expand Down

0 comments on commit 6173f66

Please sign in to comment.