Skip to content

Commit

Permalink
fix(workflows/release): correct log parse in tag.sh (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
tcodes0 authored Sep 5, 2024
1 parent 2dd1711 commit c556e92
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion workflows/release/tag.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ validate() {
# meant to only run once
# fix for SIGPIPE errors arrising from piping git log into head -1
break
done < <(git log --oneline --decorate)
# format: just commit body
done < <(git log --pretty=format:%B)

if ! [[ $main_head =~ $release_re ]]; then
log $LINENO "main head not a release commit: $main_head"
Expand Down

0 comments on commit c556e92

Please sign in to comment.