Skip to content

Commit

Permalink
remove version from electron build names (#3000)
Browse files Browse the repository at this point in the history
* remove version from electron build names

* note

* fix
  • Loading branch information
youngcw authored Jul 7, 2024
1 parent f129b07 commit cbbbaf6
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
6 changes: 4 additions & 2 deletions packages/desktop-electron/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
"icon": "icons/icon.icns",
"hardenedRuntime": true,
"gatekeeperAssess": false,
"artifactName": "${productName}-mac.${ext}",
"notarize": {
"teamId": "79ANZ983YF"
}
Expand All @@ -44,15 +45,16 @@
"flatpak",
"AppImage"
],
"artifactName": "${productName}-${version}-${arch}.${ext}"
"artifactName": "${productName}-linux.${ext}"
},
"flatpak": {
"runtimeVersion": "23.08",
"baseVersion": "23.08"
},
"win": {
"target": "nsis",
"icon": "icons/icon.ico"
"icon": "icons/icon.ico",
"artifactName": "${productName}-windows.${ext}"
}
},
"dependencies": {
Expand Down
6 changes: 6 additions & 0 deletions upcoming-release-notes/3000.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
category: Maintenance
authors: [youngcw]
---

Cleanup desktop app filenames to prep for download page

0 comments on commit cbbbaf6

Please sign in to comment.