Skip to content

Commit

Permalink
fix(releases): Get commits since previous tag
Browse files Browse the repository at this point in the history
  • Loading branch information
jidicula committed Jan 17, 2021
1 parent 745978f commit 0199881
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
uses: actions/checkout@v2
- name: Release Notes
run:
git log $(git describe --tags --abbrev=0)..HEAD~ --pretty='format:* %h %s%n * %an <%ae>' >> ".github/RELEASE-TEMPLATE.md"
git log $(git describe HEAD~ --tags --abbrev=0)..HEAD~ --pretty='format:* %h %s%n * %an <%ae>' >> ".github/RELEASE-TEMPLATE.md"
- name: Create Release
id: create_release
uses: actions/create-release@v1
Expand Down

0 comments on commit 0199881

Please sign in to comment.