We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1cc8772 commit 09f18eaCopy full SHA for 09f18ea
1 file changed
.github/workflows/ci.yml
@@ -465,7 +465,7 @@ jobs:
465
echo "📋 VERSION: $version"
466
errors=0
467
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)); }
+ grep -q "${version}" index.html && echo "✅ index.html schema" || { echo "::error::index.html mismatch"; errors=$((errors + 1)); }
469
grep -q "## \[${version}\]" CHANGELOG.md && echo "✅ CHANGELOG entry" || { echo "::error::CHANGELOG missing $version"; errors=$((errors + 1)); }
470
[ "$errors" -gt 0 ] && exit 1
471
echo "✅ All version references consistent"
0 commit comments