We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1527754 commit c88ed22Copy full SHA for c88ed22
.github/workflows/release.yml
@@ -7,10 +7,10 @@ on:
7
description: "Version to use for the release."
8
required: true
9
default: "X.Y"
10
- # developmentVersion: #this could be the release body?
11
- # description: "Version to use for further development"
12
- # required: true
13
- # default: "X.Y.Z-RIE"
+ releaseBody:
+ description: "Information about the release"
+ required: true
+ default: "New release"
14
jobs:
15
Release:
16
environment: Release
@@ -33,7 +33,7 @@ jobs:
33
with:
34
name: Release ${{ github.event.inputs.releaseVersion }}
35
tag_name: v${{ github.event.inputs.releaseVersion }}
36
- body: This is the body
+ body: ${{ github.event.inputs.releaseBody }}
37
files: |
38
bin/aws-lambda-rie
39
bin/aws-lambda-rie-arm64
0 commit comments