Skip to content

Commit 41fc08f

Browse files
Martin Lopeslucascosti
andauthored
Apply suggestions from code review
Co-authored-by: Lucas Costi <lucascosti@users.noreply.github.com>
1 parent 83e72a6 commit 41fc08f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

content/actions/reference/workflow-commands-for-github-actions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -301,11 +301,11 @@ steps:
301301

302302
`echo "{path}" >> $GITHUB_PATH`
303303

304-
Prepends a directory to the system `PATH` variable and makes it available to all subsequent actions in the current job; the currently running action cannot access the new path variable. To see the currently defined paths for your job, you can use `echo "$PATH"` in an action.
304+
Prepends a directory to the system `PATH` variable and makes it available to all subsequent actions in the current job; the currently running action cannot access the updated path variable. To see the currently defined paths for your job, you can use `echo "$PATH"` in a step or an action.
305305

306306
#### Example
307307

308-
This example demonstrates how to add the user home directory to `PATH`:
308+
This example demonstrates how to add the user `$HOME/.local/bin` directory to `PATH`:
309309

310310
``` bash
311311
echo "$HOME/.local/bin" >> $GITHUB_PATH

0 commit comments

Comments
 (0)