mirror of
https://github.com/actions/runner-images.git
synced 2025-12-14 13:17:54 +00:00
add missing tools to ubuntu docs
This commit is contained in:
@@ -101,7 +101,11 @@ $toolsList = @(
|
||||
(Get-NewmanVersion),
|
||||
(Get-NvmVersion),
|
||||
(Get-PackerVersion),
|
||||
("Pollinate"),
|
||||
(Get-PhantomJSVersion),
|
||||
(Get-PulumiVersion),
|
||||
(Get-RVersion),
|
||||
("Sphinx Open Source Search Server"),
|
||||
(Get-SwigVersion),
|
||||
(Get-TerraformVersion),
|
||||
(Get-UnZipVersion),
|
||||
|
||||
@@ -247,3 +247,13 @@ function Get-ORASCliVersion {
|
||||
function Get-VerselCliversion {
|
||||
return "$(vercel --version 2>&1 | Select-Object -First 1)"
|
||||
}
|
||||
|
||||
function Get-PulumiVersion {
|
||||
$pulumiVersion = pulumi version | Take-OutputPart -Part 0 -Delimiter "v"
|
||||
return "Pulumi $pulumiVersion"
|
||||
}
|
||||
|
||||
function Get-RVersion {
|
||||
$rVersion = R --version | Select-String "R version" | Take-OutputPart -Part -2
|
||||
return "R $rVersion"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user