File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -381,7 +381,7 @@ async function run() {
381381 waitForMinutes = MAX_WAIT_MINUTES;
382382 }
383383
384- const forceNewDeployInput = core.getInput('force-new-deployment', { required: false });
384+ const forceNewDeployInput = core.getInput('force-new-deployment', { required: false }) || false ;
385385 const forceNewDeployment = forceNewDeployInput != undefined && (forceNewDeployInput.toLowerCase === 'true' || forceNewDeployInput);
386386
387387 // Register the task definition
Original file line number Diff line number Diff line change @@ -223,7 +223,7 @@ async function run() {
223223 waitForMinutes = MAX_WAIT_MINUTES ;
224224 }
225225
226- const forceNewDeployInput = core . getInput ( 'force-new-deployment' , { required : false } ) ;
226+ const forceNewDeployInput = core . getInput ( 'force-new-deployment' , { required : false } ) || false ;
227227 const forceNewDeployment = forceNewDeployInput != undefined && ( forceNewDeployInput . toLowerCase === 'true' || forceNewDeployInput ) ;
228228
229229 // Register the task definition
You can’t perform that action at this time.
0 commit comments