Skip to content

Commit

Permalink
Try different method
Browse files Browse the repository at this point in the history
  • Loading branch information
philnewm committed Oct 19, 2024
1 parent 66f69ef commit 5a2fa98
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,11 @@ runs:
cd $GITHUB_ACTION_PATH
changelog=$(python github_query.py generate-release-changelog)
delimiter="$(openssl rand -hex 8)"
echo "changelog<<${delimiter}" >> "${GITHUB_OUTPUT}"
echo $changelog >> "${GITHUB_OUTPUT}"
echo "${delimiter}" >> "${GITHUB_OUTPUT}"
{
echo "changelog<<${delimiter}"
echo $changelog
echo "${delimiter}"
} >> $GITHUB_OUTPUT
- name: Show changelog formatted
shell: bash
Expand Down

0 comments on commit 5a2fa98

Please sign in to comment.