Skip to content
This repository has been archived by the owner on Jul 9, 2023. It is now read-only.

Commit

Permalink
Add artifact name for each publish type
Browse files Browse the repository at this point in the history
  • Loading branch information
n8maninger committed Aug 17, 2019
1 parent 12b75cf commit 369eba5
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion vue.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ module.exports = {
productName: 'Sia Host Manager',
copyright: '2019 Sia Central',
afterSign: 'build/scripts/notarize.js',
/* eslint-disable no-template-curly-in-string */
artifactName: '${productName}-v${version}.${ext}',
extraResources: [
{
/* eslint-disable no-template-curly-in-string */
Expand All @@ -42,6 +44,8 @@ module.exports = {
}
],
mac: {
/* eslint-disable no-template-curly-in-string */
artifactName: '${productName}-v${version}.${ext}',
hardenedRuntime: true,
// disabled due to new Apple notarization failing
gatekeeperAssess: false,
Expand All @@ -50,14 +54,18 @@ module.exports = {
},
linux: {
executableName: 'Sia Host Manager',
/* eslint-disable no-template-curly-in-string */
artifactName: '${productName}-v${version}.${ext}',
target: [
'deb',
'AppImage'
],
category: 'Utility'
},
appImage: {
systemIntegration: 'doNotAsk'
systemIntegration: 'doNotAsk',
/* eslint-disable no-template-curly-in-string */
artifactName: '${productName}-v${version}.${ext}'
},
dmg: {
// new apple notarization does not need the dmg signed
Expand Down

0 comments on commit 369eba5

Please sign in to comment.