From d76d20375d46b40f140f90d8b6206f63f31ff232 Mon Sep 17 00:00:00 2001 From: Peter Amiri Date: Mon, 16 Mar 2026 06:48:20 -0700 Subject: [PATCH] Fix release workflow box.json path (#1957) The version check on line 78 referenced the old pre-flattening path templates/base/src/box.json. Updated to root box.json to match all other workflows. Co-Authored-By: Claude Opus 4.6 --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index dc73311de9..ed49800808 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -75,7 +75,7 @@ jobs: # Check that source version in box.json is clean (no -SNAPSHOT suffix). # The workflow injects -SNAPSHOT for develop builds automatically. - BASE_VERSION=$(jq -r '.version' templates/base/src/box.json) + BASE_VERSION=$(jq -r '.version' box.json) if echo "$BASE_VERSION" | grep -qi "snapshot"; then echo "ERROR: Version in box.json contains -SNAPSHOT suffix ($BASE_VERSION)" echo "Source files should have clean versions (e.g., 3.1.0)."