Skip to content

Commit 3ff7964

Browse files
committed
Fix the release generator
1 parent 2482eaf commit 3ff7964

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ jobs:
136136
137137
CHANGELOG=""
138138
139-
while IFS='|' read -r hash title author email; do
139+
while IFS='|' read -r hash title author email || [ -n "$hash" ]; do
140140
short_hash="${hash:0:7}"
141141
username=$(gh api "repos/${GITHUB_REPO}/commits/$hash" --jq '.author.login' 2>/dev/null || echo "")
142142

0 commit comments

Comments
 (0)