From 770e4cbe661c30723a75ac4b6d229ea516ef54bd Mon Sep 17 00:00:00 2001 From: kolaente Date: Tue, 16 Dec 2025 22:35:21 +0100 Subject: [PATCH] fix(ci): fix unstable suffix not renamed for desktop release builds --- desktop/build.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/desktop/build.js b/desktop/build.js index 8bdf92b2c..f2b5d28b4 100644 --- a/desktop/build.js +++ b/desktop/build.js @@ -106,7 +106,7 @@ async function main() { console.log('Step 4: Installing dependencies and building...') execSync('pnpm dist', {stdio: 'inherit'}) - if (renameDistFiles) { + if (!renameDistFiles) { console.log('Step 5: Renaming release files...') await renameDistFilesToUnstable(versionPlaceholder) }