Skip to content

Commit

Permalink
hbhvjakuylhkgmhvags
Browse files Browse the repository at this point in the history
  • Loading branch information
devinbinnie committed Jan 10, 2025
1 parent a3a814f commit 9fb5e4f
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build-for-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ jobs:
env:
APPLE_API_KEY_ID: ${{ secrets.MM_DESKTOP_MAC_APP_STORE_MACOS_API_KEY_ID }}
APPLE_API_KEY_RAW: ${{ secrets.MM_DESKTOP_MAC_APP_STORE_MACOS_API_KEY }}
APPLE_API_KEY: ./key.p8
APPLE_API_KEY: "./key.p8"
APPLE_API_ISSUER: ${{ secrets.MM_DESKTOP_MAC_APP_STORE_MACOS_API_ISSUER_ID }}
CSC_FOR_PULL_REQUEST: true
CSC_KEY_PASSWORD: ${{ secrets.MM_DESKTOP_MAC_INSTALLER_CSC_KEY_PASSWORD }}
Expand Down
12 changes: 12 additions & 0 deletions patches/@electron+notarize+2.2.1.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
diff --git a/node_modules/@electron/notarize/lib/notarytool.js b/node_modules/@electron/notarize/lib/notarytool.js
index b058fdc..b72c6af 100644
--- a/node_modules/@electron/notarize/lib/notarytool.js
+++ b/node_modules/@electron/notarize/lib/notarytool.js
@@ -102,6 +102,7 @@ function notarizeAndWaitForNotaryTool(opts) {
'json',
];
const result = yield (0, spawn_1.spawn)('xcrun', notarizeArgs);
+ console.log(notarizeArgs, result.output.trim())
const parsed = JSON.parse(result.output.trim());
if (result.code !== 0 || !parsed.status || parsed.status !== 'Accepted') {
try {

0 comments on commit 9fb5e4f

Please sign in to comment.