Skip to content

Commit

Permalink
Fix GitHub Actions output not being correctly set
Browse files Browse the repository at this point in the history
  • Loading branch information
DaPigGuy committed Dec 13, 2024
1 parent d8f1030 commit f5c6011
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion updater/update_items.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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"
);
})();

0 comments on commit f5c6011

Please sign in to comment.