Skip to content

Commit

Permalink
use command grouping
Browse files Browse the repository at this point in the history
  • Loading branch information
cbusillo committed Jun 10, 2024
1 parent 2ae9660 commit 9bbbfe2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/briefcase.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ jobs:
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]++')
echo "MESSAGES<<EOF" >> "$GITHUB_OUTPUT"
echo "$MESSAGES" >> "$GITHUB_OUTPUT"
echo "EOF" >> "$GITHUB_OUTPUT"
echo "MESSAGES<<EOF"
echo "$MESSAGES"
echo "EOF"
echo "Commit messages since last release or initial commit:"
echo "$MESSAGES"
- name: Set up Python
Expand Down

0 comments on commit 9bbbfe2

Please sign in to comment.