Skip to content

Commit

Permalink
More notarization fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
alexanderson1993 committed Jan 30, 2024
1 parent 318bca0 commit 792ad99
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,6 @@ jobs:
# macOS notarization API key
API_KEY_ID: ${{ secrets.api_key_id }}
API_KEY_ISSUER_ID: ${{ secrets.api_key_issuer_id }}
APPLE_ID: ${{ secrets.APPLE_ID }}
APPLE_ID_PASSWORD: ${{ secrets.APPLE_ID_PASSWORD }}
APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Setup tmate session
uses: mxschmitt/action-tmate@v2
Expand Down
6 changes: 3 additions & 3 deletions desktop/main/electron.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,13 +91,13 @@ async function createWindow() {
});
}

app.whenReady().then(() => {
app.whenReady().then(async () => {
try {
autoUpdater.checkForUpdatesAndNotify();
await autoUpdater.checkForUpdatesAndNotify();
} catch {
// Ignore it
}
createWindow();
await createWindow();
});

app.on("window-all-closed", async () => {
Expand Down

0 comments on commit 792ad99

Please sign in to comment.