File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -22,11 +22,9 @@ inputs:
22
22
env_name :
23
23
description : " The name of the EB environment"
24
24
required : false
25
- default : " $INPUT_app-name"
26
25
version_label :
27
26
description : " The version label for the the application version to be deployed"
28
27
required : false
29
- default : " $GITHUB_SHA"
30
28
runs :
31
29
using : " docker"
32
30
image : " Dockerfile"
Original file line number Diff line number Diff line change @@ -7,6 +7,10 @@ AWS_ACCESS_KEY_ID="$INPUT_AWS_ACCESS_KEY_ID"
7
7
AWS_SECRET_ACCESS_KEY=" $INPUT_AWS_SECRET_ACCESS_KEY "
8
8
AWS_DEFAULT_REGION=" $INPUT_AWS_DEFAULT_REGION "
9
9
10
+ # Default inputs from env
11
+ INPUT_ENV_NAME=" ${INPUT_ENV_NAME:= $INPUT_APP_NAME } "
12
+ INPUT_VERSION_LABEL=" ${INPUT_VERSION_LABEL:= $GITHUB_SHA } "
13
+
10
14
ZIP_NAME=" $INPUT_APP_NAME -$INPUT_VERSION_LABEL .zip"
11
15
echo " App bundle name: $ZIP_NAME "
12
16
You can’t perform that action at this time.
0 commit comments