mirror of
https://git.mirrors.martin98.com/https://github.com/actions/toolkit
synced 2026-04-12 15:56:57 +08:00
Add docs and wrapper for "echo" command (#411)
* Add docs and wrapper for "echo" command * Update parameter to enabled
This commit is contained in:
@@ -87,6 +87,15 @@ export function setOutput(name: string, value: any): void {
|
||||
issueCommand('set-output', {name}, value)
|
||||
}
|
||||
|
||||
/**
|
||||
* 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.
|
||||
*
|
||||
*/
|
||||
export function setCommandEcho(enabled: boolean): void {
|
||||
issue('echo', enabled ? 'on' : 'off')
|
||||
}
|
||||
|
||||
//-----------------------------------------------------------------------
|
||||
// Results
|
||||
//-----------------------------------------------------------------------
|
||||
|
||||
Reference in New Issue
Block a user