mirror of
https://github.com/actions/runner-images-sangeeth.git
synced 2025-12-15 22:36:46 +00:00
Select first browser_download_url from array
This commit is contained in:
@@ -6,7 +6,8 @@
|
||||
Write-Host "Get the latest gh version..."
|
||||
|
||||
$Name = "gh_windows_amd64.msi"
|
||||
$DownloadUrl = (Invoke-RestMethod -Uri "https://api.github.com/repos/cli/cli/releases/latest").assets.browser_download_url -match "windows_amd64.msi"
|
||||
$Assets = (Invoke-RestMethod -Uri "https://api.github.com/repos/cli/cli/releases/latest").assets
|
||||
$DownloadUrl = ($Assets.browser_download_url -match "windows_amd64.msi") | Select-Object -First 1
|
||||
|
||||
Install-Binary -Url $DownloadUrl -Name $Name
|
||||
|
||||
|
||||
Reference in New Issue
Block a user