mirror of
https://github.com/actions/runner-images.git
synced 2025-12-29 21:42:55 +08:00
Add Google Cloud SDK for Windows (#1102)
* Add Google Cloud SDK * Add Validate-GoogleCloudSDK.ps1 script
This commit is contained in:
committed by
GitHub
parent
f342a7de2d
commit
4c34ad64df
@@ -101,7 +101,8 @@ $markdown += New-MDList -Style Unordered -Lines @(
|
||||
(Get-AWSSAMVersion),
|
||||
(Get-AlibabaCLIVersion),
|
||||
(Get-CloudFoundryVersion),
|
||||
(Get-HubVersion)
|
||||
(Get-HubVersion),
|
||||
(Get-GoogleCloudSDKVersion)
|
||||
)
|
||||
|
||||
$markdown += New-MDHeader "Browsers and webdrivers" -Level 3
|
||||
|
||||
@@ -202,4 +202,8 @@ function Get-StackVersion {
|
||||
((stack --version --quiet) | Out-String) -match "Version (?<version>\d+\.\d+\.\d+)," | Out-Null
|
||||
$stackVersion = $Matches.Version
|
||||
return "Stack $stackVersion"
|
||||
}
|
||||
|
||||
function Get-GoogleCloudSDKVersion {
|
||||
(gcloud --version) -match "Google Cloud SDK"
|
||||
}
|
||||
Reference in New Issue
Block a user