- Fix the naming convention in Electron output to align with previous artifact naming to not break external/internal URLs. - In desktop execution tests, make artifact locator logic stricter to test regression.
32 lines
467 B
YAML
32 lines
467 B
YAML
# -------
|
|
# Windows
|
|
# -------
|
|
win:
|
|
target: nsis
|
|
nsis:
|
|
artifactName: ${name}-Setup-${version}.${ext}
|
|
|
|
# -----
|
|
# Linux
|
|
# -----
|
|
linux:
|
|
target: AppImage
|
|
appImage:
|
|
artifactName: ${name}-${version}.${ext}
|
|
|
|
# -----
|
|
# macOS
|
|
# -----
|
|
mac:
|
|
target: dmg
|
|
dmg:
|
|
artifactName: ${name}-${version}.${ext}
|
|
|
|
# ----------------
|
|
# Publish options
|
|
# ----------------
|
|
publish:
|
|
provider: 'github'
|
|
vPrefixedTagName: false # default: true
|
|
releaseType: release # default: draft
|