Skip to content

Commit

Permalink
chore: use nushell in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
oberrich committed Jan 9, 2025
1 parent a5d0588 commit a95fa29
Showing 1 changed file with 7 additions and 14 deletions.
21 changes: 7 additions & 14 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,20 +52,13 @@ jobs:
shell: powershell
run: |
# Get-AppxPackage -AllUsers Microsoft.DesktopAppInstaller | Foreach {Add-AppxPackage -Path $_.InstallLocation + '\AppXManifest.xml'}
Start-Process @{
FilePath = 'msiexec.exe'
ArgumentList = @(
'/i'
"${{github.workspace}}\nu-0.101.0-${{ matrix.target }}.msi"
'ALLUSERS="2"'
'/qb!'
'/L*v "nu-install.log"'
)
Wait = $true
NoNewWindow = $true
PassThru = $true
}
Start-Process -FilePath 'msiexec.exe' -ArgumentList @(
'/i',
"${{ github.workspace }}\nu-0.101.0-${{ matrix.target }}.msi",
'ALLUSERS=2',
'/qb!',
'/L*v "nu-install.log"'
) -Wait -NoNewWindow -PassThru
"C:\Program Files\nu\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
Write-Host "nu installation log:"
Expand Down

0 comments on commit a95fa29

Please sign in to comment.