From 7905e0a6cf39d4695d388abc0b60beaacfc902a6 Mon Sep 17 00:00:00 2001 From: shanzez <78763240+shanzez@users.noreply.github.com> Date: Thu, 23 Apr 2026 00:31:30 -0400 Subject: [PATCH] fix: re-enable model version check in CI (#10796) The check_model_version.js CI step was commented out, which allowed v0.7.413 to ship with MODEL_VERSION=0.7.343 baked into the desktop client. This causes a blocking "New version is available" dialog for self-hosted users whose servers have MODEL_VERSION > 0.7.343. Re-enabling this check will catch future model/version.txt drift before it reaches a release. Co-authored-by: Claude Opus 4.6 (1M context) --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 2c1a2fbffa..d8cce4786a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -97,8 +97,8 @@ jobs: node common/scripts/install-run-rush.js install fi - # - name: Cheking model is updated... - # run: node common/scripts/check_model_version.js + - name: Checking model version is updated... + run: node common/scripts/check_model_version.js - name: Checking for mis-matching dependencies... run: node common/scripts/install-run-rush.js check