Установка встроенных переменных Octopus
Я пытаюсь обновить значение переменной Octopus "Octopus.Action.Azure.CloudServicePackageExtractionDisabled" в deploy.ps1 шага осьминога развертывания облачной службы. Но следующее, похоже, не работает. Какие-либо предложения?
$cloudServicePackageExtractionDisabledpre = $OctopusParameters["Octopus.Action.Azure.CloudServicePackageExtractionDisabled"]
Write-Host "PRE CloudServicePackageExtractionDisabled: $cloudServicePackageExtractionDisabledpre"
Set-OctopusVariable -name "Octopus.Action.Azure.CloudServicePackageExtractionDisabled" -value "True"
$cloudServicePackageExtractionDisabledpost = $OctopusParameters["Octopus.Action.Azure.CloudServicePackageExtractionDisabled"]
Write-Host "POST CloudServicePackageExtractionDisabled: $cloudServicePackageExtractionDisabledpost"