From c2712b108a0501927b7890c0cb245d45f16bd90d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=96=2E=20Efe=20D=2E?= <67526259+skyline69@users.noreply.github.com> Date: Thu, 2 Jan 2025 03:27:52 +0100 Subject: [PATCH] technical change --- .github/workflows/check-mod.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/check-mod.yml b/.github/workflows/check-mod.yml index 8829e1f0..acbd31d3 100644 --- a/.github/workflows/check-mod.yml +++ b/.github/workflows/check-mod.yml @@ -49,9 +49,9 @@ jobs: WIDTH=$(echo "$DIMENSIONS" | cut -dx -f1) HEIGHT=$(echo "$DIMENSIONS" | cut -dx -f2) - # Check if dimensions exceed 1920x500 - if [ "$WIDTH" -gt 1920 ] || [ "$HEIGHT" -gt 500 ]; then - echo "Error: Thumbnail in $MOD_DIR exceeds the recommended size of 1920×500." + # Check if dimensions exceed 1920x1080 + if [ "$WIDTH" -gt 1920 ] || [ "$HEIGHT" -gt 1080 ]; then + echo "Error: Thumbnail in $MOD_DIR exceeds the recommended size of 1920×1080." exit 1 fi fi