setCommandEcho function

void setCommandEcho({
  1. required bool enabled,
})

Enables or disables the echoing of commands into stdout for the rest of the step.

Echoing is disabled by default if ACTIONS_STEP_DEBUG is not set.

Implementation

void setCommandEcho({required bool enabled}) {
  issue('echo', enabled ? 'on' : 'off');
}