Skip to content

Commit

Permalink
Fix output bug for workflows (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
LeShadow authored Jul 8, 2024
1 parent f3c2f24 commit 00ba870
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def exclude_languages(language_list):
def set_action_output(output_name, value) :
if "GITHUB_OUTPUT" in os.environ :
with open(os.environ["GITHUB_OUTPUT"], "a") as f :
print("Detected languages: {0}={1}".format(output_name, value), file=f)
print("{0}={1}".format(output_name, value), file=f)

def main():
languages = get_languages()
Expand Down

0 comments on commit 00ba870

Please sign in to comment.