Merge pull request #36 from kasbah/patch-1

Improve artifact names in electron-builder.json5
This commit is contained in:
草鞋没号 2022-06-08 20:50:07 +08:00 committed by GitHub
commit dcaca724a1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -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}",
}, },
} }