Skip to content

Commit 41d5848

Browse files
[Tech] Enable Auto Updates (#157)
* change url, update version, add release workflows, add logging * Update package.json * fix: pr comments * Update pre-push * test build --------- Co-authored-by: Flavio F Lima <flavioislima@gmail.com>
1 parent 7049fb1 commit 41d5848

File tree

7 files changed

+101
-16
lines changed

7 files changed

+101
-16
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Build
22

33
on:
44
push:
5-
branches: [main, stable, overlay]
5+
branches: [main, stable, tech/release_ci_cd]
66
tags:
77
- '!v*'
88
workflow_dispatch:

.github/workflows/release_linux.yml

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: Draft Release Linux
2+
3+
on:
4+
push:
5+
tags:
6+
- 'v*'
7+
workflow_dispatch:
8+
9+
env:
10+
GITHUB_TOKEN: ${{ secrets.WORKFLOW_TOKEN }}
11+
GH_TOKEN: ${{ secrets.WORKFLOW_TOKEN }}
12+
13+
jobs:
14+
draft-releases:
15+
runs-on: ubuntu-latest
16+
steps:
17+
- name: Checkout repository.
18+
uses: actions/checkout@v3
19+
with:
20+
submodules: 'recursive'
21+
token: ${{ secrets.pat }}
22+
- name: Setup NodeJS
23+
uses: actions/setup-node@v3
24+
with:
25+
node-version: '18'
26+
- name: Reconfigure git to use HTTP authentication
27+
run: >
28+
git config --global url."https://github.com/".insteadOf
29+
ssh://git@github.com/
30+
- name: Authenticate with private NPM package
31+
run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc
32+
- name: Install modules.
33+
run: yarn
34+
- name: Build artifacts.
35+
run: yarn run release:linux

.github/workflows/release_macOS.yml

+15-6
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Build and Release macOS HP version
1+
name: Draft Release macOS
22

33
on:
44
push:
@@ -7,13 +7,14 @@ on:
77
workflow_dispatch:
88

99
env:
10+
GITHUB_TOKEN: ${{ secrets.WORKFLOW_TOKEN }}
11+
GH_TOKEN: ${{ secrets.WORKFLOW_TOKEN }}
1012
CSC_IDENTITY_AUTO_DISCOVERY: true
1113
CSC_LINK: ${{ secrets.CSC_LINK }}
1214
CSC_KEY_PASSWORD: ${{ secrets.CSC_KEY_PASSWORD }}
1315
APPLE_ID: ${{ secrets.APPLEID }}
1416
APPLE_APP_SPECIFIC_PASSWORD: ${{ secrets.APPLEIDPASS }}
1517
TEAMID: ${{ secrets.TEAMID }}
16-
GH_TOKEN: ${{ secrets.WORKFLOW_TOKEN }}
1718

1819
jobs:
1920
build-and-release:
@@ -26,13 +27,21 @@ jobs:
2627
submodules: 'recursive'
2728
token: ${{ secrets.pat }}
2829

29-
- name: Install dependencies
30-
run: yarn install
31-
3230
- name: Set up Node.js
3331
uses: actions/setup-node@v3
3432
with:
35-
node-version: '16'
33+
node-version: '18'
34+
35+
- name: Reconfigure git to use HTTP authentication
36+
run: >
37+
git config --global url."https://github.com/".insteadOf
38+
ssh://git@github.com/
39+
40+
- name: Authenticate with private NPM package
41+
run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc
42+
43+
- name: Install dependencies
44+
run: yarn
3645

3746
- name: Build artifacts.
3847
run: yarn release:mac --arm64

.github/workflows/release_windows.yml

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: Draft Release Windows
2+
3+
on:
4+
push:
5+
tags:
6+
- 'v*'
7+
workflow_dispatch:
8+
9+
env:
10+
GITHUB_TOKEN: ${{ secrets.WORKFLOW_TOKEN }}
11+
GH_TOKEN: ${{ secrets.WORKFLOW_TOKEN }}
12+
13+
jobs:
14+
draft-releases:
15+
runs-on: windows-latest
16+
steps:
17+
- name: Checkout repository.
18+
uses: actions/checkout@v3
19+
with:
20+
submodules: 'recursive'
21+
token: ${{ secrets.pat }}
22+
- name: Setup NodeJS
23+
uses: actions/setup-node@v3
24+
with:
25+
node-version: '18'
26+
- name: Reconfigure git to use HTTP authentication
27+
run: >
28+
git config --global url."https://github.com/".insteadOf
29+
ssh://git@github.com/
30+
- name: Authenticate with private NPM package
31+
run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc
32+
- name: Install modules.
33+
run: npm i --legacy-peer-deps
34+
- name: Build artifacts.
35+
run: npm run release:win

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"description": "An Open Source Launcher for Web3, GOG and Epic Games",
99
"repository": {
1010
"type": "Github",
11-
"url": "https://github.com/G7DAO/HyperPlay/"
11+
"url": "https://github.com/HyperPlay-Gaming/hyperplay-desktop-client"
1212
},
1313
"author": {
1414
"name": "HyperPlay",
@@ -199,9 +199,9 @@
199199
"test-watch": "jest --watch --maxWorkers=25%",
200200
"test:ci": "jest --runInBand --silent",
201201
"manualTestProxyJest": "jest mmExtIntegration.test.ts",
202-
"release:linux": "vite build && electron-builder -p always --linux deb AppImage rpm pacman tar.xz",
202+
"release:linux": "vite build && electron-builder -p always --linux deb rpm pacman tar.xz",
203203
"release:mac": "vite build && electron-builder -p always --mac --x64 --arm64",
204-
"release:win": "vite build && electron-builder -p never --win nsis portable --x64 --arm64",
204+
"release:win": "vite build && electron-builder -p always --win nsis --x64 --arm64",
205205
"dist:linux": "vite build && electron-builder --linux",
206206
"dist:mac": "vite build && electron-builder --mac",
207207
"dist:win": "vite build && electron-builder --win",

src/backend/main.ts

+5-4
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,6 @@ import {
9292
wikiLink,
9393
fontsStore,
9494
configPath,
95-
isMac,
9695
isSteamDeckGameMode,
9796
isCLIFullscreen,
9897
isCLINoGui,
@@ -256,9 +255,11 @@ const loadMainWindowURL = function () {
256255
mainWindow.loadURL(
257256
`file://${path.join(publicDir, '../build/index.html?view=App')}`
258257
)
259-
if (!isMac) {
260-
autoUpdater.checkForUpdates()
261-
}
258+
autoUpdater.checkForUpdates().then((val) => {
259+
logInfo(
260+
`Auto Updater found version: ${val?.updateInfo.version} released on ${val?.updateInfo.releaseDate} with name ${val?.updateInfo.releaseName}`
261+
)
262+
})
262263
}
263264

264265
mainWindow.webContents.setWindowOpenHandler((details) => {

src/backend/updater.ts

+7-2
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,13 @@ import { t } from 'i18next'
44

55
import { icon } from './constants'
66
// import { showDialogBoxModalAuto } from './dialog/dialog'
7-
import { logError, LogPrefix } from './logger/logger'
7+
import { logError, LogPrefix, logInfo } from './logger/logger'
88

99
autoUpdater.autoDownload = false
1010
autoUpdater.autoInstallOnAppQuit = false
1111

1212
autoUpdater.on('update-available', async () => {
13+
logInfo('App update is available')
1314
const { response, checkboxChecked } = await dialog.showMessageBox({
1415
title: t('box.info.update.title', 'HyperPlay'),
1516
message: t('box.info.update.message', 'There is a new Version available!'),
@@ -23,13 +24,17 @@ autoUpdater.on('update-available', async () => {
2324
buttons: [t('box.no'), t('box.yes')]
2425
})
2526
if (checkboxChecked) {
26-
shell.openExternal('https://github.com/G7DAO/HyperPlay/releases')
27+
shell.openExternal(
28+
'https://github.com/HyperPlay-Gaming/hyperplay-desktop-client/releases'
29+
)
2730
}
2831
if (response === 1) {
2932
autoUpdater.downloadUpdate()
3033
}
3134
})
35+
3236
autoUpdater.on('update-downloaded', async () => {
37+
logInfo('App update is downloaded')
3338
const { response } = await dialog.showMessageBox({
3439
title: t('box.info.update.title-finished', 'Update Finished'),
3540
message: t(

0 commit comments

Comments
 (0)