Skip to content

Commit

Permalink
hopefully fix auto update
Browse files Browse the repository at this point in the history
  • Loading branch information
Official-Husko committed Apr 7, 2024
1 parent 9384ce8 commit 9298f15
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/all_os.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,11 @@ jobs:
- name: Build Application for macOS
run: pnpm build:mac-universal

- name: Upload Artifact
- name: Upload Artifacts
uses: actions/upload-artifact@v4
with:
name: patched_mac_asar
path: ./apps/desktop/release/mac-unpacked/resources/app.asar
name: patched_mac_artifacts
path: ./apps/desktop/release

build_and_deploy_windows:
name: Build and Deploy (Windows)
Expand Down
2 changes: 1 addition & 1 deletion apps/desktop/packages/main/autoUpdater.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ console.log(autoUpdater.currentVersion);

export default function initAutoUpdater(win: BrowserWindow | null) {
autoUpdater.autoDownload = false;
autoUpdater.autoInstallOnAppQuit = true;
autoUpdater.autoInstallOnAppQuit = false;

ipcMain.handle(
"checkForUpdates",
Expand Down
2 changes: 1 addition & 1 deletion packages/config/version.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"version": "2.0.7",
"version": "2.0.99",
"channel": "beta"
}

0 comments on commit 9298f15

Please sign in to comment.