Skip to content

Commit fc62b08

Browse files
committed
ugh
1 parent ae98d2e commit fc62b08

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -390,10 +390,10 @@ async function run() {
390390
const clusterName = cluster ? cluster : 'default';
391391
const shouldRunTaskInput = core.getInput('run-task', { required: false }) || 'false';
392392
const shouldRunTask = shouldRunTaskInput.toLowerCase() === 'true';
393+
core.debug(`shouldRunTask: ${shouldRunTask}`);
393394
if (shouldRunTask) {
395+
core.debug("Running ad-hoc task...");
394396
await runTask(ecs, clusterName, taskDefArn, waitForMinutes);
395-
} else {
396-
core.debug('run-task is not true, skipping.')
397397
}
398398

399399
// Update the service with the new task definition

0 commit comments

Comments
 (0)