Ignore the tray template when checking for the SDL revision
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index b41807e..9e162e7 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -102,9 +102,8 @@
       - 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