fix(build): build only x64 packages for linux

This commit is contained in:
Alexey Kasyanchuk
2022-08-10 18:52:37 +03:00
parent e03ab32eec
commit 8752809829

View File

@ -65,15 +65,19 @@
{ {
"target": "AppImage", "target": "AppImage",
"arch": [ "arch": [
"x64", "x64"
"ia32"
] ]
}, },
{ {
"target": "rpm", "target": "rpm",
"arch": [ "arch": [
"x64", "x64"
"ia32" ]
},
{
"target": "deb",
"arch": [
"x64"
] ]
} }
], ],