Skip to content

Commit

Permalink
prepare-rake: make value lower-case
Browse files Browse the repository at this point in the history
  • Loading branch information
CAMOBAP authored Sep 30, 2024
1 parent 853ffb0 commit 3be4843
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/prepare-rake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
is_excluded_event = event_name in excluded_events
push_condition = event_name == 'push' and (head_tag == '' or repository in excluded_repositories)
result = not (is_excluded_event or push_condition)
result = str(not (is_excluded_event or push_condition)).lower()
print(f"The result is: {result}")
os.system(f"echo value={result} >> {os.environ['GITHUB_OUTPUT']}")
Expand Down

0 comments on commit 3be4843

Please sign in to comment.