Skip to content

Commit 8f337e4

Browse files
authored
fix(ci): add uru to current PATH before admin install (#154)
1 parent cca2d21 commit 8f337e4

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/integration-test-migrate-ruby-windows-uru.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,12 +66,14 @@ jobs:
6666
Write-Host "Extracting uru..."
6767
7z x $uruArchive -o"$uruDir" -y
6868
69-
# Add uru to PATH
69+
# Add uru to PATH (for subsequent steps)
7070
$uruDir | Out-File -FilePath $env:GITHUB_PATH -Append
71+
# Also add to current PATH (GITHUB_PATH only affects subsequent steps)
72+
$env:Path = "$uruDir;$env:Path"
7173
7274
# Initialize uru
7375
Write-Host "Installing uru..."
74-
& "$uruDir\uru_rt.exe" admin install
76+
uru_rt.exe admin install
7577
7678
Write-Host "uru installed successfully"
7779

0 commit comments

Comments
 (0)