( command: string, properties: CommandProperties, message: string )
| 17 | * ##[set-secret name=mypassword]definatelyNotAPassword! |
| 18 | */ |
| 19 | export function issueCommand( |
| 20 | command: string, |
| 21 | properties: CommandProperties, |
| 22 | message: string |
| 23 | ): void { |
| 24 | const cmd = new Command(command, properties, message) |
| 25 | process.stdout.write(cmd.toString() + os.EOL) |
| 26 | } |
| 27 | |
| 28 | export function issue(name: string, message: string): void { |
| 29 | issueCommand(name, {}, message) |
no test coverage detected