fix(ci): fix unstable suffix not renamed for desktop release builds

This commit is contained in:
kolaente 2025-12-16 22:35:21 +01:00
parent 4afd223cd3
commit 770e4cbe66
1 changed files with 1 additions and 1 deletions

View File

@ -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)
}