Skip to content

Commit

Permalink
Fix multiline output
Browse files Browse the repository at this point in the history
  • Loading branch information
rabilrbl committed Aug 29, 2023
1 parent 5dbd71b commit 503d3bd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/release_on_tag_push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ jobs:
- name: Generate changelogs
id: changelogs
run: |
echo "commits=$(git log --pretty=format:%s ${{ steps.fetch_latest_tag.outputs.previous_tag }}..${{ steps.fetch_latest_tag.outputs.latest_tag }})" >> $GITHUB_OUTPUT
echo "commits<<EOF" >> $GITHUB_OUTPUT
git log --pretty=format:%s ${{ steps.fetch_latest_tag.outputs.previous_tag }}..${{ steps.fetch_latest_tag.outputs.latest_tag }} >> $GITHUB_OUTPUT
echo "EOF" >> $GITHUB_OUTPUT
- name: Create Release
id: create_release
uses: actions/create-release@v1
Expand Down

0 comments on commit 503d3bd

Please sign in to comment.