Skip to content

Commit

Permalink
removing trailing \n from commits in release.
Browse files Browse the repository at this point in the history
  • Loading branch information
cbusillo committed Jun 10, 2024
1 parent 9bbbfe2 commit d8e355c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/briefcase.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
run: |
git fetch --tags
LAST_TAG=$(git describe --tags --abbrev=0 2>/dev/null || git rev-list --max-parents=0 HEAD)
MESSAGES=$(git log --no-merges --pretty=format:"- [%h](https://github.com/${{ github.repository }}/commit/%H) %s\n" "$LAST_TAG"..HEAD | awk '!seen[$0]++')
MESSAGES=$(git log --no-merges --pretty=format:"- [%h](https://github.com/${{ github.repository }}/commit/%H) %s" "$LAST_TAG"..HEAD | awk '!seen[$0]++')
echo "MESSAGES<<EOF"
echo "$MESSAGES"
echo "EOF"
Expand Down

0 comments on commit d8e355c

Please sign in to comment.