Skip to content

Commit

Permalink
Update run-windows-matrix.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
shamil-mubarakshin authored Dec 6, 2024
1 parent 002b6d5 commit e57be04
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/run-windows-matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,14 @@ jobs:
Get-Content "$env:USERPROFILE/.docker/config.json"
docker
shell: pwsh
- name: append env
shell: pwsh
run: |
$currentPath = [System.Environment]::GetEnvironmentVariable("PATH", "Machine")
$newPath = "C:\temp" + ';' + $currentPath
[Environment]::SetEnvironmentVariable("PATH", $newPath, "Machine")
- name: show PATH
shell: pwsh
run: |
$PATH
$env:PATH

0 comments on commit e57be04

Please sign in to comment.