From 8295ecb1fe877c990d489ded47c29431fe981d8f Mon Sep 17 00:00:00 2001 From: bobbintb Date: Sun, 2 Mar 2025 21:36:48 -0700 Subject: [PATCH] Update daily-check.yml --- .github/workflows/daily-check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/daily-check.yml b/.github/workflows/daily-check.yml index 332dae6..756ef8b 100644 --- a/.github/workflows/daily-check.yml +++ b/.github/workflows/daily-check.yml @@ -16,7 +16,7 @@ jobs: json=$(curl -s https://releases.unraid.net/usb-creator) unraind_latest_version="${1:-$(echo "$json" | jq -r '.os_list[0].name' | sed 's/Unraid //')}" echo "Latest version of Unraid is ${unraind_latest_version} and latest Docker image is ${docker_current_version}" - if [ "$docker_current_version" != "$unraind_latest_version" ]; then + if [ "$docker_current_version" == "$unraind_latest_version" ]; then echo "No new version. Nothing to do." echo "trigger_another_action=true" >> $GITHUB_ENV else