mirror of
https://github.com/actions/runner-images.git
synced 2025-12-14 22:05:17 +00:00
13 lines
581 B
PowerShell
13 lines
581 B
PowerShell
################################################################################
|
|
## File: Install-AzureCli.ps1
|
|
## Desc: Install Azure CLI
|
|
################################################################################
|
|
|
|
choco install azure-cli -y
|
|
|
|
$AzureCliExtensionPath = Join-Path $Env:CommonProgramFiles 'AzureCliExtensionDirectory'
|
|
New-Item -ItemType "directory" -Path $AzureCliExtensionPath
|
|
|
|
[Environment]::SetEnvironmentVariable("AZURE_EXTENSION_DIR", $AzureCliExtensionPath, [System.EnvironmentVariableTarget]::Machine)
|
|
$Env:AZURE_EXTENSION_DIR = $AzureCliExtensionPath
|