SDL: Ignore the tray template when checking for the SDL revision

From f5e5f6588921eed3d7d048ce43d9eb1ff0da0ffc Mon Sep 17 00:00:00 2001
From: Sam Lantinga <[EMAIL REDACTED]>
Date: Wed, 31 Dec 2025 17:10:09 -0800
Subject: [PATCH] Ignore the tray template when checking for the SDL revision

---
 .github/workflows/release.yml | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index b41807e75a20e..9e162e769fcf4 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -102,9 +102,8 @@ jobs:
       - name: 'Verify SDL_REVISION contains SDL-'
         run: |
           set -e
-          if test "x$(strings /tmp/build/libSDL3.so.0 | grep SDL- | wc -l)" != x1; then
+          if test "x$(strings /tmp/build/libSDL3.so.0 | grep SDL- | grep -v SDL-tray | wc -l)" != x1; then
             echo "SDL- string not found: must be present in SDL_REVISION"
-            strings /tmp/build/libSDL3.so.0 | grep SDL-
             exit 1
           fi