Skip to content

Commit

Permalink
updated apple creds
Browse files Browse the repository at this point in the history
  • Loading branch information
imolorhe committed Sep 24, 2023
1 parent 5d02e88 commit c6e5a88
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,10 @@ jobs:
env:
# macOS notarization API key
# https://www.codiga.io/blog/notarize-sign-electron-app/
APPLE_ID: ${{ secrets.apple_id }}
APPLE_ID_PASSWORD: ${{ secrets.apple_id_password }}
APPLEIDPASS: ${{ secrets.apple_id_password }}
APPLE_TEAM_ID: ${{ secrets.apple_team_id }}
APPLE_ID: ${{ secrets.APPLE_ID }}
APPLE_ID_PASSWORD: ${{ secrets.APPLE_ID_PASSWORD }}
APPLEIDPASS: ${{ secrets.APPLE_ID_PASSWORD }}
APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }}
SNAPCRAFT_STORE_CREDENTIALS: ${{ secrets.SNAPCRAFT_TOKEN }}

# chocolatey
Expand Down
6 changes: 5 additions & 1 deletion packages/altair-electron/scripts/notarize.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,11 @@ exports.default = async function notarizing(context) {

const appName = context.packager.appInfo.productFilename;

console.log('Notarizing application');
console.log(
'Notarizing application',
process.env.APPLE_ID,
process.env.APPLE_TEAM_ID
);
await notarize({
tool: 'notarytool',
// appBundleId: 'com.xkoji.altair',
Expand Down

0 comments on commit c6e5a88

Please sign in to comment.