File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -381,7 +381,7 @@ async function run() {
381
381
waitForMinutes = MAX_WAIT_MINUTES;
382
382
}
383
383
384
- const forceNewDeployInput = core.getInput('force-new-deployment', { required: false });
384
+ const forceNewDeployInput = core.getInput('force-new-deployment', { required: false }) || false ;
385
385
const forceNewDeployment = forceNewDeployInput != undefined && (forceNewDeployInput.toLowerCase === 'true' || forceNewDeployInput);
386
386
387
387
// Register the task definition
Original file line number Diff line number Diff line change @@ -223,7 +223,7 @@ async function run() {
223
223
waitForMinutes = MAX_WAIT_MINUTES ;
224
224
}
225
225
226
- const forceNewDeployInput = core . getInput ( 'force-new-deployment' , { required : false } ) ;
226
+ const forceNewDeployInput = core . getInput ( 'force-new-deployment' , { required : false } ) || false ;
227
227
const forceNewDeployment = forceNewDeployInput != undefined && ( forceNewDeployInput . toLowerCase === 'true' || forceNewDeployInput ) ;
228
228
229
229
// Register the task definition
You can’t perform that action at this time.
0 commit comments