Compare commits

..

No commits in common. '23a38ad3347a4a1eae5e3dae6aa99e43a753d6b9' and '1c6656df35d299413d52abac2cc20f771079e96e' have entirely different histories.

@ -7,9 +7,6 @@ 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

@ -25,7 +25,6 @@ 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"))
@ -59,7 +58,7 @@ func main() {
IsPrerelease: preRelease,
Title: title,
Target: ctx.SHA,
Note: body,
// Note: rc.Note,
})
if err != nil {
gha.Fatalf("failed to create release: %v", err)

Loading…
Cancel
Save