File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -58612,7 +58612,8 @@ var client_s3_dist_cjs = __nccwpck_require__(19250);
5861258612function getInputs() {
5861358613 return {
5861458614 appName: core.getInput("app_name", { required: true }),
58615- awsRegion: core.getInput("aws_region", { required: false }),
58615+ awsRegion: core.getInput("aws_region", { required: false }) ||
58616+ process.env.AWS_REGION,
5861658617 blueEnv: core.getInput("blue_env", { required: true }),
5861758618 deploy: core.getBooleanInput("deploy", { required: true }),
5861858619 greenEnv: core.getInput("green_env", { required: true }),
@@ -59052,7 +59053,7 @@ function main(inputs) {
5905259053 return Promise.reject(err);
5905359054 }
5905459055 const client = new dist_cjs.ElasticBeanstalkClient({
59055- region: inputs.awsRegion || process.env.AWS_REGION ,
59056+ region: inputs.awsRegion,
5905659057 credentials: getCredentials(),
5905759058 });
5905859059 const applicationVersion = yield getApplicationVersion(client, inputs);
You can’t perform that action at this time.
0 commit comments