Skip to content

Commit 92714a4

Browse files
fix: create release script
1 parent f96aca4 commit 92714a4

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

.github/workflows/create-release.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,10 @@ jobs:
3131
# Find the first changelog section (skip the title)
3232
# This grabs content from the first ## heading until the next ## heading
3333
awk '
34-
BEGIN { found=0; skip_first=1 }
34+
BEGIN { found=0 }
3535
/^## / {
3636
if (found) exit
37-
if (!skip_first) {
38-
found=1
39-
next
40-
}
41-
skip_first=0
37+
found=1
4238
next
4339
}
4440
found {print}

0 commit comments

Comments
 (0)