Skip to content

Commit cd9ed9c

Browse files
committed
chore: add release notes
1 parent 6dd29e1 commit cd9ed9c

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/release.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@ on:
1111
description: 'Version to release (e.g., 0.0.1)'
1212
required: true
1313
type: string
14+
release_notes:
15+
description: 'Release notes (optional)'
16+
required: false
17+
type: string
18+
default: ''
1419

1520
jobs:
1621
release:
@@ -30,8 +35,9 @@ jobs:
3035
with:
3136
name: Release v${{ github.event.inputs.version }}
3237
tag_name: v${{ github.event.inputs.version }}
38+
body: ${{ github.event.inputs.release_notes }}
3339
files: build/**
34-
generate_release_notes: true
40+
generate_release_notes: ${{ !github.event.inputs.release_notes }}
3541
env:
3642
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3743

0 commit comments

Comments
 (0)