We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10a6136 commit 8e7a7faCopy full SHA for 8e7a7fa
1 file changed
.github/workflows/go.yml
@@ -7,6 +7,10 @@ on:
7
description: 'The tag name for the release (e.g., v0.1.0-test)'
8
required: true
9
default: 'v0.1.0-alpha'
10
+ release_body:
11
+ description: 'The release notes/body for the release.'
12
+ required: true
13
+ default: 'This is a new release.'
14
15
jobs:
16
build-and-release:
@@ -100,5 +104,5 @@ jobs:
100
104
with:
101
105
tag_name: ${{ github.event.inputs.tag_name }}
102
106
name: Release ${{ github.event.inputs.tag_name }}
103
- body: "Installation"
107
+ body: ${{ github.event.inputs.release_body }}
108
files: artifacts/**/*.zip
0 commit comments