Skip to content

Commit ccbc2c8

Browse files
committed
Correct env variable name. GITHUB auotmatically converts name to uppercase
1 parent 15d6cd5 commit ccbc2c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/check_latest_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
# Extract module name and version from the release tag
4040
# Assuming the tag format is <module_name>-<version>, e.g., nidigital-1.4.0
4141
if os.getenv("GITHUB_EVENT_NAME") == "workflow_dispatch":
42-
tag = os.getenv("INPUT_release_tag")
42+
tag = os.getenv("INPUT_RELEASE_TAG")
4343
else:
4444
with open(os.getenv("GITHUB_EVENT_PATH"), "r") as event_file:
4545
event = json.load(event_file)

0 commit comments

Comments
 (0)