Skip to content

api_function_writegithubactionsstdoutcommand

hugoalh edited this page Dec 27, 2023 · 8 revisions

Write-GitHubActionsStdOutCommand

  • Type: Function
  • In Version: >= v1.4.0
  • Alias:
    • Write-GitHubActionsCommand

Write stdout command to communicate with the runner machine.

πŸ…°οΈ Advanced

This function is suitable for advanced users, useful when GitHub Actions has new stdout commands but this module has not include yet.

  • Write-GitHubActionsStdOutCommand
      [-StdOutCommand] <String>
      [[-Parameter] <Hashtable>]
      [[-Value] <String>]
  • # >= v2.0.0
    Write-GitHubActionsStdOutCommand
      [-StdOutCommand] <String>
      [[-Parameter] <PSCustomObject>]
      [[-Value] <String>]
  • # >= v2.0.0
    Write-GitHubActionsStdOutCommand
      [-StdOutCommand] <String>
      [[-Parameter] <OrderedDictionary>]
      [[-Value] <String>]

Parameter

StdOutCommand

<String> Stdout command.

  • Position: 0
  • Accept Pipeline Input: False ❌
  • Accept Pipeline Input By Property Name: True βœ”οΈ
  • Accept Wildcard Characters: False ❌
  • Alias:
    • Command

Parameter

  • (>= v2.0.0) [Optional] <Hashtable | PSCustomObject | OrderedDictionary> Parameters of the stdout command.
  • (< v2.0.0) [Optional] <Hashtable> Parameters of the stdout command.

β€’

  • Position: Named
  • Accept Pipeline Input: False ❌
  • Accept Pipeline Input By Property Name: True βœ”οΈ
  • Alias:
    • Parameters
    • Properties
    • Property

Value

[Optional] <String> Value of the stdout command.

  • Position: Named
  • Accept Pipeline Input: False ❌
  • Accept Pipeline Input By Property Name: True βœ”οΈ
  • Accept Wildcard Characters: False ❌
  • Alias:
    • Content
    • Message

Output

<Void>

Guide

API

Enum

Enum Flag

Function

Function Alias

Clone this wiki locally