From f4b4dfe3229bb64b7111a9f9596cad5639b1347b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateusz=20Kwieci=C5=84ski?= <36954793+mateuszkwiecinski@users.noreply.github.com> Date: Sun, 10 Mar 2024 12:59:25 +0100 Subject: [PATCH] Fix `debug` flag being always true --- entrypoint.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.py b/entrypoint.py index 792d1c3..3c4fcc6 100644 --- a/entrypoint.py +++ b/entrypoint.py @@ -42,7 +42,7 @@ def find_tool_coordinates(): def is_debug(): - return os.getenv("INPUT_DEBUG", False) + return os.getenv("INPUT_DEBUG", "false").casefold() == "true".casefold() def is_windows():