Skip to content

Commit

Permalink
Remove output escaping, as it's done by github_action_utils
Browse files Browse the repository at this point in the history
  • Loading branch information
ibexa-yuna committed Nov 10, 2022
1 parent f9133dd commit 33aca0e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ outputs:
description: "Changelog output"
runs:
using: "docker"
image: "docker://ghcr.io/ibexa/changelog-generator-action:v2.0.4"
image: "docker://ghcr.io/ibexa/changelog-generator-action:v2.0.5"
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ def main():
if bare_output:
print(messages)
else:
set_output("changelog", prepare_output(messages))
set_output("changelog", messages)


if __name__ == "__main__":
Expand Down

0 comments on commit 33aca0e

Please sign in to comment.