File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -104,7 +104,6 @@ jobs:
104
104
displayName: 'docker login $(dockerHost)'
105
105
condition: and( succeededOrFailed(), ne(variables['Channel'],''))
106
106
107
-
108
107
- pwsh : |
109
108
if($env:ACR -eq 'yes')
110
109
{
@@ -138,7 +137,9 @@ jobs:
138
137
$containerName = $containerName.Replace('.', '-')
139
138
$context = New-AzStorageContext -StorageAccountName $(StorageAccount)
140
139
$querystring = New-AzStorageContainerSASToken -Context $context -Name $containerName -Permission r -ExpiryTime ((get-date).AddMinutes(180)) -Protocol HttpsOnly
141
- $url = "https://$(StorageAccount).blob.core.windows.net/$querystring"
140
+ $uriBuilder = [System.UriBuilder]::new("https://$(StorageAccount).blob.core.windows.net")
141
+ $uriBuilder.Query = $querystring.ToString()
142
+ $url = $uriBuilder.ToString()
142
143
Write-Host "##vso[task.setvariable variable=SasUrl;]$url"
143
144
displayName : ' Set SasUrl variable'
144
145
condition : and( succeededOrFailed(), ne(variables['Channel'],''))
@@ -185,7 +186,7 @@ jobs:
185
186
displayName : ' docker logout'
186
187
condition : and( always(), ne(variables['Channel'],''))
187
188
188
- - pwsh : |
189
+ - pwsh : |
189
190
if($env:ACR -eq 'yes')
190
191
{
191
192
Write-Host 'Using ACR, will need to az logout'
Original file line number Diff line number Diff line change 1
1
[
2
2
{
3
3
"name" : " stable" ,
4
- "path" : " release/7-3 " ,
4
+ "path" : " release/7-4 " ,
5
5
"pwshInstallVersion" : " 7" ,
6
6
"packageTag" : " "
7
7
},
You can’t perform that action at this time.
0 commit comments