Skip to content

Commit

Permalink
update actions
Browse files Browse the repository at this point in the history
  • Loading branch information
cbusillo committed Jun 12, 2024
1 parent 4a62a97 commit e08f1b8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 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" "$LAST_TAG"..HEAD | awk '!seen[$0]++')
echo "MESSAGES<<EOF"
echo "$MESSAGES"
echo "EOF"
echo "MESSAGES<<EOF" >> $GITHUB_ENV
echo "$MESSAGES" >> $GITHUB_ENV
echo "EOF" >> $GITHUB_ENV
echo "Commit messages since last release or initial commit:"
echo "$MESSAGES"
- name: Set up Python
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:
Commits:
${{ steps.get_commit_messages.outputs.MESSAGES }}
dfaft: false
draft: false
prerelease: false
tag_name: v${{ env.VERSION }}
name: Release v${{ env.VERSION }}
Expand Down

0 comments on commit e08f1b8

Please sign in to comment.