0
1
Fork 0

Add release body

This commit is contained in:
Lunny Xiao 2023-07-07 10:36:39 +08:00
parent 1c6656df35
commit 40f581c7a6
No known key found for this signature in database
GPG Key ID: C3B7C91B632F738A
2 changed files with 5 additions and 1 deletions

View File

@ -7,6 +7,9 @@ inputs:
title:
description: 'The release title'
required: false
body:
description: 'The release body'
required: false
pre_release:
description: "Whether it's a pre release"
required: false

View File

@ -25,6 +25,7 @@ func main() {
files := gha.GetInput("files")
title := gha.GetInput("title")
body := gha.GetInput("body")
apiKey := gha.GetInput("api_key")
preRelease, _ := strconv.ParseBool(gha.GetInput("pre_release"))
draft, _ := strconv.ParseBool(gha.GetInput("draft"))
@ -58,7 +59,7 @@ func main() {
IsPrerelease: preRelease,
Title: title,
Target: ctx.SHA,
// Note: rc.Note,
Note: body,
})
if err != nil {
gha.Fatalf("failed to create release: %v", err)