Skip to content

Commit bca477e

Browse files
committed
Fix showing only 1 commit per release
1 parent 2409b43 commit bca477e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/create-builds.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
echo "" >> release_notes.txt
7777
echo "Changes since last release:" >> release_notes.txt
7878
79-
LATEST_TAG=$(gh release list --limit 1 --json tagName --jq '.[0].tagName' 2>/dev/null || echo "")
79+
LATEST_TAG=$(gh release list --limit 2 --json tagName --jq '.[1].tagName' 2>/dev/null || echo "")
8080
8181
if git rev-parse "$LATEST_TAG" >/dev/null 2>&1; then
8282
git log "$LATEST_TAG"..HEAD --pretty=format:"- %s" >> release_notes.txt

0 commit comments

Comments
 (0)