forked from coltoneshaw/3cpm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed notarize script, added env vars
- Loading branch information
1 parent
2a165b6
commit 6173f66
Showing
2 changed files
with
4 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,4 +7,5 @@ dist/* | |
build/* | ||
/src/main-app.js | ||
release/* | ||
commit.sh | ||
commit.sh | ||
.env |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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' | ||
}); | ||
|