diff --git a/.circleci/config.yml b/.circleci/config.yml index 72849cf35c..2db7d0a781 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -671,26 +671,26 @@ jobs: declare -A tag0=( [key]='platform' [value]='macos' - [objectDownload]=${appFileName}'-mac-x64.dmg' - [objectUpgrade]=${appFileName}'.zip' + [objectDownload]=${applicationName}'-mac-x64.dmg' + [objectUpgrade]=${applicationName}'.zip' ) declare -A tag1=( [key]='platform' [value]='windows' - [objectDownload]=${appFileName}'-win-installer.exe' + [objectDownload]=${applicationName}'-win-installer.exe' ) declare -A tag2=( [key]='platform' [value]='linux_AppImage' - [objectDownload]=${appFileName}'-linux.AppImage' + [objectDownload]=${applicationName}'-linux.AppImage' ) declare -A tag3=( [key]='platform' [value]='linux_deb' - [objectDownload]=${appFileName}'-linux.deb' + [objectDownload]=${applicationName}'-linux.deb' ) # loop for add all tags to each app and create metrics diff --git a/electron-builder.json b/electron-builder.json index 9c046951c8..6d1a875a27 100644 --- a/electron-builder.json +++ b/electron-builder.json @@ -12,7 +12,7 @@ "package.json" ], "afterSign": "electron-builder-notarize", - "artifactName": "RedisInsight.${ext}", + "artifactName": "${productName}.${ext}", "compression": "normal", "mac": { "target": ["dmg", "zip"], @@ -24,7 +24,7 @@ "gatekeeperAssess": false }, "dmg": { - "artifactName": "RedisInsight-${os}-x64.${ext}", + "artifactName": "${productName}-${os}-x64.${ext}", "contents": [ { "x": 130, @@ -40,14 +40,14 @@ }, "win": { "target": ["nsis"], - "artifactName": "RedisInsight-${os}-installer.${ext}" + "artifactName": "${productName}-${os}-installer.${ext}" }, "linux": { "icon": "./resources/icons", "target": ["deb", "AppImage"], "synopsis": "Redis GUI by Redis Ltd.", "category": "Development", - "artifactName": "RedisInsight-${os}.${ext}", + "artifactName": "${productName}-${os}.${ext}", "desktop": { "Name": "RedisInsight", "Type": "Application",