1
0
mirror of synced 2025-12-21 10:57:10 -05:00

Remove references to stdout commands (#31674)

Co-authored-by: Lucas Costi <lucascosti@users.noreply.github.com>
This commit is contained in:
Francesco Renzi
2022-10-17 02:09:57 +01:00
committed by GitHub
parent b88af49652
commit ad70a7012f
13 changed files with 103 additions and 34 deletions

View File

@@ -481,6 +481,7 @@ jobs:
{% endpowershell %}
{% ifversion actions-save-state-set-output-envs %}{% else %}
## Echoing command outputs
Enables or disables echoing of workflow commands. For example, if you use the `set-output` command in a workflow, it sets an output parameter but the workflow run's log does not show the command itself. If you enable command echoing, then the log shows the command, such as `::set-output name={name}::{value}`.
@@ -542,6 +543,8 @@ The example above prints the following lines to the log:
```
Only the second `set-output` and `echo` workflow commands are included in the log because command echoing was only enabled when they were run. Even though it is not always echoed, the output parameter is set in all cases.
{% endif %}
## Sending values to the pre and post actions