Skip to content

Commit 7650023

Browse files
Remove errant blocks from Adding a system path (#33326)
Co-authored-by: Alex Nguyen <[email protected]>
1 parent a776343 commit 7650023

File tree

1 file changed

+0
-16
lines changed

1 file changed

+0
-16
lines changed

content/actions/using-workflows/workflow-commands-for-github-actions.md

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1099,22 +1099,6 @@ Job summaries are isolated between steps and each step is restricted to a maximu
10991099

11001100
Prepends a directory to the system `PATH` variable and automatically 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.
11011101

1102-
{% bash %}
1103-
1104-
```bash copy
1105-
echo "{path}" >> $GITHUB_PATH
1106-
```
1107-
1108-
{% endbash %}
1109-
1110-
{% powershell %}
1111-
1112-
```powershell copy
1113-
"{path}" | Out-File -FilePath $env:GITHUB_PATH -Append
1114-
```
1115-
1116-
{% endpowershell %}
1117-
11181102
### Example of adding a system path
11191103

11201104
{% bash %}

0 commit comments

Comments
 (0)