Skip to content

Commit

Permalink
Fix gitlog resolve last release
Browse files Browse the repository at this point in the history
  • Loading branch information
juhaku committed Feb 15, 2022
1 parent 31b6bc6 commit f1b017b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/gitlog/gitlog.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# This mangles git log entries for change lop purposes

from_commit=HEAD
last_release=$(git tag --sort=-taggerdate | head -1) # get last tag
last_release=$(git tag | sort -r | head -1) # get last tag

output_file=""
while true; do
Expand Down

0 comments on commit f1b017b

Please sign in to comment.