From aac4a02ef319ca74510bde4bd65bb7b633fc1b68 Mon Sep 17 00:00:00 2001 From: Nathan Flurry Date: Tue, 27 Jan 2026 20:49:14 -0800 Subject: [PATCH] fix: add update-version to complete-ci phase for reuse_engine_version --- scripts/release/main.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/release/main.ts b/scripts/release/main.ts index cf65db3..a28e45b 100755 --- a/scripts/release/main.ts +++ b/scripts/release/main.ts @@ -317,7 +317,10 @@ const PHASE_MAP: Record = { // triggering release. "setup-ci": ["validate-reuse-version", "run-ci-checks", "build-js-artifacts"], // These steps run after the required artifacts have been successfully built. + // Note: update-version is included here to ensure Cargo.toml versions are + // updated before publishing when using --reuse-engine-version. "complete-ci": [ + "update-version", "publish-crates", "publish-npm-sdk", "publish-npm-cli",