specify desktop publish targets as defaults (may) change

This commit is contained in:
undergroundwires
2021-01-19 06:51:09 +01:00
parent 4015e2ccd8
commit 2316e3fb68

View File

@@ -17,7 +17,16 @@ module.exports = {
provider: 'github',
vPrefixedTagName: false, // default: true
releaseType: 'release' // or "draft" (default), "prerelease"
}]
}],
mac: { // https://www.electron.build/configuration/mac
target: 'dmg',
},
win: { // https://www.electron.build/configuration/win
target: 'nsis',
},
linux: { // https://www.electron.build/configuration/linux
target: 'AppImage',
}
}
}
}