Skip to content

Commit 8813376

Browse files
committed
Add "preview" to artifacte name
1 parent d3d625f commit 8813376

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.circleci/config.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -671,26 +671,26 @@ jobs:
671671
declare -A tag0=(
672672
[key]='platform'
673673
[value]='macos'
674-
[objectDownload]=${appFileName}'-mac-x64.dmg'
675-
[objectUpgrade]=${appFileName}'.zip'
674+
[objectDownload]=${applicationName}'-mac-x64.dmg'
675+
[objectUpgrade]=${applicationName}'.zip'
676676
)
677677
678678
declare -A tag1=(
679679
[key]='platform'
680680
[value]='windows'
681-
[objectDownload]=${appFileName}'-win-installer.exe'
681+
[objectDownload]=${applicationName}'-win-installer.exe'
682682
)
683683
684684
declare -A tag2=(
685685
[key]='platform'
686686
[value]='linux_AppImage'
687-
[objectDownload]=${appFileName}'-linux.AppImage'
687+
[objectDownload]=${applicationName}'-linux.AppImage'
688688
)
689689
690690
declare -A tag3=(
691691
[key]='platform'
692692
[value]='linux_deb'
693-
[objectDownload]=${appFileName}'-linux.deb'
693+
[objectDownload]=${applicationName}'-linux.deb'
694694
)
695695
696696
# loop for add all tags to each app and create metrics

electron-builder.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"package.json"
1313
],
1414
"afterSign": "electron-builder-notarize",
15-
"artifactName": "RedisInsight.${ext}",
15+
"artifactName": "${productName}.${ext}",
1616
"compression": "normal",
1717
"mac": {
1818
"target": ["dmg", "zip"],
@@ -24,7 +24,7 @@
2424
"gatekeeperAssess": false
2525
},
2626
"dmg": {
27-
"artifactName": "RedisInsight-${os}-x64.${ext}",
27+
"artifactName": "${productName}-${os}-x64.${ext}",
2828
"contents": [
2929
{
3030
"x": 130,
@@ -40,14 +40,14 @@
4040
},
4141
"win": {
4242
"target": ["nsis"],
43-
"artifactName": "RedisInsight-${os}-installer.${ext}"
43+
"artifactName": "${productName}-${os}-installer.${ext}"
4444
},
4545
"linux": {
4646
"icon": "./resources/icons",
4747
"target": ["deb", "AppImage"],
4848
"synopsis": "Redis GUI by Redis Ltd.",
4949
"category": "Development",
50-
"artifactName": "RedisInsight-${os}.${ext}",
50+
"artifactName": "${productName}-${os}.${ext}",
5151
"desktop": {
5252
"Name": "RedisInsight",
5353
"Type": "Application",

0 commit comments

Comments
 (0)