Skip to content

Commit

Permalink
Change up the build config to build each arch seperately
Browse files Browse the repository at this point in the history
  • Loading branch information
z3db0y committed Mar 13, 2024
1 parent 47c3345 commit bc61a3a
Showing 1 changed file with 20 additions and 8 deletions.
28 changes: 20 additions & 8 deletions electron-builder.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,39 +4,51 @@
"icon": "assets/img/icon.png",
"productName": "[Rays] Nova",
"win": {
"artifactName": "${productName}-${os}-portable-${version}-${arch}.${ext}",
"artifactName": "${name}-${os}-portable-${version}-${arch}.${ext}",
"target": [
{
"target": "nsis",
"arch": ["x64", "ia32"]
"arch": "x64"
},
{
"target": "nsis",
"arch": "ia32"
},
{
"target": "portable",
"arch": ["x64", "ia32"]
"arch": "x64"
},
{
"target": "portable",
"arch": "ia32"
}
]
},
"linux": {
"artifactName": "${productName}-${os}-portable-${version}-${arch}.${ext}",
"artifactName": "${name}-${os}-portable-${version}-${arch}.${ext}",
"category": "Game",
"target": [
{
"target": "AppImage",
"arch": ["x64", "ia32"]
"arch": "x64"
},
{
"target": "AppImage",
"arch": "ia32"
}
]
},
"mac": {
"artifactName": "${productName}-${os}-portable-${version}-${arch}.${ext}",
"artifactName": "${name}-${os}-portable-${version}-${arch}.${ext}",
"target": [
{
"target": "dmg",
"arch": ["x64"]
"arch": "x64"
}
]
},
"nsis": {
"artifactName": "${productName}-win-setup-${version}-${arch}.${ext}",
"artifactName": "${name}-${os}-setup-${version}-${arch}.${ext}",
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": true
Expand Down

0 comments on commit bc61a3a

Please sign in to comment.