From 9e836c69d42a5df87295415be9e477318574a627 Mon Sep 17 00:00:00 2001 From: Rajaniraiyn Date: Thu, 27 Oct 2022 22:02:36 +0530 Subject: [PATCH] revert: revert last 2 commits --- .github/workflows/build.yml | 6 ++++-- package.json | 4 ++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 01356d2..4c069e7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -14,7 +14,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [macOS-latest, windows-latest] + os: [macOS-latest, ubuntu-latest, windows-latest] arch: [x64] include: - os: macOS-latest @@ -38,11 +38,13 @@ jobs: # Build for supported platforms # https://github.com/electron/electron-packager/blob/ebcbd439ff3e0f6f92fa880ff28a8670a9bcf2ab/src/targets.js#L9 # 32-bit Linux unsupported as of 2019: https://www.electronjs.org/blog/linux-32bit-support - os: [macOS-latest, windows-latest] + os: [macOS-latest, ubuntu-latest, windows-latest] arch: [x64, arm64] include: - os: windows-latest arch: ia32 + - os: ubuntu-latest + arch: armv7l # Publishing artifacts for multiple Windows architectures has # a bug which can cause the wrong architecture to be downloaded # for an update, so until that is fixed, only build Windows x64 diff --git a/package.json b/package.json index 3ffcc81..3b1f00b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "raj-browser", - "version": "2.0.4", + "version": "2.0.5", "description": "A UI and privacy focussed browser for the web from the web.", "main": "./out/main/index.js", "author": "Rajaniraiyn", @@ -14,7 +14,7 @@ "dev": "electron-vite dev", "build": "tsc --noEmit && electron-vite build", "postinstall": "electron-builder install-app-deps", - "build:current": "electron-builder --config", + "build:current": "npm run build && electron-builder --config", "build:win": "npm run build && electron-builder --win --config", "build:mac": "npm run build && electron-builder --mac --config", "build:linux": "npm run build && electron-builder --linux --config",