1
0
mirror of synced 2026-01-18 15:02:54 -05:00

Merge pull request #50987 from github/repo-sync

Repo sync
This commit is contained in:
docs-bot
2024-06-04 11:56:21 -07:00
committed by GitHub

View File

@@ -1099,22 +1099,6 @@ Job summaries are isolated between steps and each step is restricted to a maximu
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.
{% bash %}
```bash copy
echo "{path}" >> $GITHUB_PATH
```
{% endbash %}
{% powershell %}
```powershell copy
"{path}" | Out-File -FilePath $env:GITHUB_PATH -Append
```
{% endpowershell %}
### Example of adding a system path
{% bash %}