Skip to content

Commit 45f24e5

Browse files
committed
Add zip target for mac
1 parent 85915bc commit 45f24e5

1 file changed

Lines changed: 69 additions & 61 deletions

File tree

electron-builder.json

Lines changed: 69 additions & 61 deletions
Original file line numberDiff line numberDiff line change
@@ -15,64 +15,72 @@
1515
"category": "public.app-category.productivity",
1616
"artifactName": "${productName}-mac-${arch}.${ext}",
1717
"target": [
18-
{
19-
"target": "dmg",
20-
"arch": [
21-
"x64",
22-
"arm64"
23-
]
24-
}
25-
],
26-
"protocols": [
27-
{
28-
"name": "Redstring Protocol",
29-
"schemes": [
30-
"redstring"
31-
]
32-
}
33-
]
34-
},
35-
"win": {
36-
"artifactName": "${productName}-win-${arch}.${ext}",
37-
"target": [
38-
{
39-
"target": "nsis",
40-
"arch": [
41-
"x64",
42-
"ia32"
43-
]
44-
}
45-
],
46-
"protocols": [
47-
{
48-
"name": "Redstring Protocol",
49-
"schemes": [
50-
"redstring"
51-
]
52-
}
53-
]
54-
},
55-
"linux": {
56-
"artifactName": "${productName}-linux-${arch}.${ext}",
57-
"target": [
58-
{
59-
"target": "AppImage",
60-
"arch": [
61-
"x64"
62-
]
63-
}
64-
],
65-
"protocols": [
66-
{
67-
"name": "Redstring Protocol",
68-
"schemes": [
69-
"redstring"
70-
]
71-
}
72-
]
73-
},
74-
"nsis": {
75-
"oneClick": false,
76-
"allowToChangeInstallationDirectory": true
77-
}
78-
}
18+
"target": [
19+
{
20+
"target": "dmg",
21+
"arch": [
22+
"x64",
23+
"arm64"
24+
]
25+
},
26+
{
27+
"target": "zip",
28+
"arch": [
29+
"x64",
30+
"arm64"
31+
]
32+
}
33+
],
34+
"protocols": [
35+
{
36+
"name": "Redstring Protocol",
37+
"schemes": [
38+
"redstring"
39+
]
40+
}
41+
]
42+
},
43+
"win": {
44+
"artifactName": "${productName}-win-${arch}.${ext}",
45+
"target": [
46+
{
47+
"target": "nsis",
48+
"arch": [
49+
"x64",
50+
"ia32"
51+
]
52+
}
53+
],
54+
"protocols": [
55+
{
56+
"name": "Redstring Protocol",
57+
"schemes": [
58+
"redstring"
59+
]
60+
}
61+
]
62+
},
63+
"linux": {
64+
"artifactName": "${productName}-linux-${arch}.${ext}",
65+
"target": [
66+
{
67+
"target": "AppImage",
68+
"arch": [
69+
"x64"
70+
]
71+
}
72+
],
73+
"protocols": [
74+
{
75+
"name": "Redstring Protocol",
76+
"schemes": [
77+
"redstring"
78+
]
79+
}
80+
]
81+
},
82+
"nsis": {
83+
"oneClick": false,
84+
"allowToChangeInstallationDirectory": true
85+
}
86+
}

0 commit comments

Comments
 (0)