Improve artifact names in electron-builder.json5
- Add platform name - Remove "Installer" from the AppImage (AppImages are executables)
This commit is contained in:
parent
99d473948b
commit
9770dd133a
|
@ -18,7 +18,7 @@
|
||||||
arch: ["x64"],
|
arch: ["x64"],
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
artifactName: "${productName}-${version}-Setup.${ext}",
|
artifactName: "${productName}-Windows-${version}-Setup.${ext}",
|
||||||
},
|
},
|
||||||
nsis: {
|
nsis: {
|
||||||
oneClick: false,
|
oneClick: false,
|
||||||
|
@ -28,10 +28,10 @@
|
||||||
},
|
},
|
||||||
mac: {
|
mac: {
|
||||||
target: ["dmg"],
|
target: ["dmg"],
|
||||||
artifactName: "${productName}-${version}-Installer.${ext}",
|
artifactName: "${productName}-Mac-${version}-Installer.${ext}",
|
||||||
},
|
},
|
||||||
linux: {
|
linux: {
|
||||||
target: ["AppImage"],
|
target: ["AppImage"],
|
||||||
artifactName: "${productName}-${version}-Installer.${ext}",
|
artifactName: "${productName}-Linux-${version}.${ext}",
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue