fix: signing env at job level, fix macOS bundle filenames in manifest

This commit is contained in:
Psychotoxical
2026-04-02 02:38:53 +02:00
parent 0086b3e310
commit 205b2c1914
2 changed files with 5 additions and 4 deletions
+2 -2
View File
@@ -19,8 +19,8 @@ if (!VERSION) {
// Platform → update bundle filename (produced by tauri-action with updater plugin)
const PLATFORM_FILES = {
'darwin-aarch64': `Psysonic_${VERSION}_aarch64.app.tar.gz`,
'darwin-x86_64': `Psysonic_${VERSION}_x64.app.tar.gz`,
'darwin-aarch64': `Psysonic_aarch64.app.tar.gz`,
'darwin-x86_64': `Psysonic_x64.app.tar.gz`,
'windows-x86_64': `Psysonic_${VERSION}_x64-setup.nsis.zip`,
};