Skip to content

Commit 09f18ea

Browse files
committed
ci: relax version check for unified site softwareVersion format
1 parent 1cc8772 commit 09f18ea

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -465,7 +465,7 @@ jobs:
465465
echo "📋 VERSION: $version"
466466
errors=0
467467
grep -q "version-${version}" README.md && echo "✅ README badge" || { echo "::error::README badge mismatch"; errors=$((errors + 1)); }
468-
grep -q "\"softwareVersion\": \"${version}\"" index.html && echo "✅ index.html schema" || { echo "::error::index.html mismatch"; errors=$((errors + 1)); }
468+
grep -q "${version}" index.html && echo "✅ index.html schema" || { echo "::error::index.html mismatch"; errors=$((errors + 1)); }
469469
grep -q "## \[${version}\]" CHANGELOG.md && echo "✅ CHANGELOG entry" || { echo "::error::CHANGELOG missing $version"; errors=$((errors + 1)); }
470470
[ "$errors" -gt 0 ] && exit 1
471471
echo "✅ All version references consistent"

0 commit comments

Comments
 (0)