Skip to content

Commit 4b48774

Browse files
authored
🤖 fix: correct Docker smoke test version check (#869)
Fix the version field check in Docker smoke test: use `git_describe` instead of `version`. The `/version` endpoint returns `git_describe`, not `version`. _Generated with `mux`_
1 parent 30b1c08 commit 4b48774

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -225,8 +225,8 @@ jobs:
225225
echo "Version check failed: missing mode=server"
226226
exit 1
227227
fi
228-
if ! echo "$response" | grep -q '"version"'; then
229-
echo "Version check failed: missing version field"
228+
if ! echo "$response" | grep -q '"git_describe"'; then
229+
echo "Version check failed: missing git_describe field"
230230
exit 1
231231
fi
232232

0 commit comments

Comments
 (0)