fix(desktop): expand release artifact names safely

Build desktop artifact names from workflow version/channel while preserving electron-builder platform macros.
This commit is contained in:
Brooklyn Nicholson 2026-05-11 23:59:19 -04:00
parent a08ec216d4
commit adb67ee48d

View file

@ -208,7 +208,7 @@ jobs:
--publish never \
--config.extraMetadata.version="${DESKTOP_VERSION}" \
--config.extraMetadata.desktopChannel="${DESKTOP_CHANNEL}" \
'--config.artifactName=Hermes-${version}-${env.DESKTOP_CHANNEL}-${os}-${arch}.${ext}'
"--config.artifactName=Hermes-${DESKTOP_VERSION}-${DESKTOP_CHANNEL}-\${os}-\${arch}.\${ext}"
- name: Notarize and staple macOS DMG
if: matrix.platform == 'mac' && needs.prepare.outputs.is_stable == 'true'