File tree 2 files changed +5
-0
lines changed
2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -95,13 +95,17 @@ jobs:
95
95
}
96
96
}
97
97
displayName: 'Install AzAccounts'
98
+ - pwsh : |
99
+ Get-ChildItem env: | Out-String -Width 1000
100
+ displayName: 'Capture Environment'
98
101
- task : AzurePowerShell@5
99
102
inputs :
100
103
azureSubscription : az-blob-cicd-infra
101
104
scriptType : inlineScript
102
105
azurePowerShellVersion : latestVersion
103
106
pwsh : true
104
107
inline : |
108
+ Write-Verbose -Verbose "namespace: $(DOCKERNAMESPACE)"
105
109
$containerName = Out-String -InputObject $(DOCKERNAMESPACE) -NoNewline
106
110
$containerName = $containerName.Replace('.', '-')
107
111
$context = New-AzStorageContext -StorageAccountName $(StorageAccount)
Original file line number Diff line number Diff line change 4
4
- pwsh : |
5
5
$tag = '$(releaseTag)'
6
6
$namespace = $tag.ToLowerInvariant()
7
+ Write-Verbose -Verbose $namespace
7
8
Write-Host "##vso[task.setvariable variable=dockerNamespace;]$namespace"
8
9
$version = $tag -replace '^v', ''
9
10
$command = "vso[task.setvariable variable=version]$version"
You can’t perform that action at this time.
0 commit comments