From f5c60111992d5cd127d2d6ed9d178ed8cd368f17 Mon Sep 17 00:00:00 2001 From: DaPigGuy Date: Fri, 13 Dec 2024 15:55:39 -0800 Subject: [PATCH] Fix GitHub Actions output not being correctly set --- updater/update_items.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/updater/update_items.mjs b/updater/update_items.mjs index 7781338..5084230 100644 --- a/updater/update_items.mjs +++ b/updater/update_items.mjs @@ -480,7 +480,7 @@ class ItemUpdater { if (process.env.GITHUB_ACTION) setOutput( "updated", - difference.length > 0 || process.env.FORCE_UPLOAD === "true" + difference !== undefined || process.env.FORCE_UPLOAD === "true" ); })();