mirror of
https://github.com/actions/runner-images.git
synced 2025-12-14 22:05:17 +00:00
add missing tools to ubuntu docs
This commit is contained in:
@@ -101,7 +101,11 @@ $toolsList = @(
|
|||||||
(Get-NewmanVersion),
|
(Get-NewmanVersion),
|
||||||
(Get-NvmVersion),
|
(Get-NvmVersion),
|
||||||
(Get-PackerVersion),
|
(Get-PackerVersion),
|
||||||
|
("Pollinate"),
|
||||||
(Get-PhantomJSVersion),
|
(Get-PhantomJSVersion),
|
||||||
|
(Get-PulumiVersion),
|
||||||
|
(Get-RVersion),
|
||||||
|
("Sphinx Open Source Search Server"),
|
||||||
(Get-SwigVersion),
|
(Get-SwigVersion),
|
||||||
(Get-TerraformVersion),
|
(Get-TerraformVersion),
|
||||||
(Get-UnZipVersion),
|
(Get-UnZipVersion),
|
||||||
|
|||||||
@@ -247,3 +247,13 @@ function Get-ORASCliVersion {
|
|||||||
function Get-VerselCliversion {
|
function Get-VerselCliversion {
|
||||||
return "$(vercel --version 2>&1 | Select-Object -First 1)"
|
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