From 9770dd133a994daeae7ac260904c5c9e181274e9 Mon Sep 17 00:00:00 2001 From: Kaspar Emanuel Date: Wed, 8 Jun 2022 13:26:25 +0100 Subject: [PATCH] Improve artifact names in electron-builder.json5 - Add platform name - Remove "Installer" from the AppImage (AppImages are executables) --- electron-builder.json5 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/electron-builder.json5 b/electron-builder.json5 index 36247cf..3da0db0 100644 --- a/electron-builder.json5 +++ b/electron-builder.json5 @@ -18,7 +18,7 @@ arch: ["x64"], }, ], - artifactName: "${productName}-${version}-Setup.${ext}", + artifactName: "${productName}-Windows-${version}-Setup.${ext}", }, nsis: { oneClick: false, @@ -28,10 +28,10 @@ }, mac: { target: ["dmg"], - artifactName: "${productName}-${version}-Installer.${ext}", + artifactName: "${productName}-Mac-${version}-Installer.${ext}", }, linux: { target: ["AppImage"], - artifactName: "${productName}-${version}-Installer.${ext}", + artifactName: "${productName}-Linux-${version}.${ext}", }, }