Skip to content

Commit 62c79ca

Browse files
authored
Merge pull request #1 from ahqsoftwares/ahqsoftwares-patch-1
Update package.json
2 parents de36216 + 48bc88a commit 62c79ca

File tree

4 files changed

+19
-5
lines changed

4 files changed

+19
-5
lines changed

.github/workflows/publish.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,12 @@ jobs:
4444
publish_tauri:
4545
name: Build the Tauri App
4646
needs: create_release
47-
runs-on: windows-latest
47+
48+
strategy:
49+
matrix:
50+
os: [Windows-Latest, Ubuntu-Latest, Macos-Latest]
4851

52+
runs-on: ${{ matrix.os }}
4953
steps:
5054
- name: Checkout
5155
uses: actions/checkout@v3
@@ -82,7 +86,11 @@ jobs:
8286
publish_electron:
8387
name: Build the Electron App
8488
needs: create_release
85-
runs-on: windows-latest
89+
strategy:
90+
matrix:
91+
os: [Windows-Latest, Ubuntu-Latest, Macos-Latest]
92+
93+
runs-on: ${{ matrix.os }}
8694

8795
steps:
8896
- name: Checkout

electron/package.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"main": "main.cjs",
55
"description": "AHQ Store Electron Project",
66
"author": "AHQ Store Developers",
7-
"version": "1.0.2",
7+
"version": "1.0.3",
88
"type": "module",
99
"scripts": {
1010
"dev": "vite",
@@ -20,6 +20,12 @@
2020
"nsis",
2121
"zip"
2222
]
23+
},
24+
"linux": {
25+
"target": ["deb", "apk", "zip"]
26+
},
27+
"macos": {
28+
"target": ["dmg", "zip"]
2329
}
2430
},
2531
"dependencies": {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ahqstore-sample-project",
3-
"version": "1.0.2",
3+
"version": "1.0.3",
44
"description": "This repo is an example repo showing **AHQ Store** bundle codebases for\r - Electron\r - Tauri",
55
"main": "index.js",
66
"scripts": {

tauri/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "ahq-store-sample-app",
33
"private": true,
4-
"version": "1.0.2",
4+
"version": "1.0.3",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",

0 commit comments

Comments
 (0)