Skip to content

Commit 49e9557

Browse files
authored
Add matrix parameter (#566)
1 parent 52942c2 commit 49e9557

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

.vsts-ci/releasePhase.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ parameters:
1212
- name: dependsOn
1313
default: []
1414
type: object
15+
- name: matrix
1516

1617
jobs:
1718
- job: ${{ parameters.jobName }}
@@ -22,7 +23,6 @@ jobs:
2223
maxParallel: ${{ parameters.maxParallel }}
2324
variables:
2425
dockerImage: 'powershell'
25-
Channel: ${{ parameters.channel }}
2626
ACR: ${{ parameters.ACR }}
2727
releaseTag: ${{ parameters.releaseTag }}
2828

build.ps1

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -524,13 +524,11 @@ End {
524524
Write-Output " tagGroups:"
525525
foreach($tag in $tagGroups.$repo | Sort-Object -Property dockerfile)
526526
{
527-
if (!$tag.IsPrivate) {
528-
Write-Output " - tags: [$($tag.Tags -join ', ')]"
529-
Write-Output " osVersion: $($tag.osVersion)"
530-
Write-Output " architecture: $($tag.architecture)"
531-
Write-Output " os: $($tag.os)"
532-
Write-Output " dockerfile: $($tag.dockerfile)"
533-
}
527+
Write-Output " - tags: [$($tag.Tags -join ', ')]"
528+
Write-Output " osVersion: $($tag.osVersion)"
529+
Write-Output " architecture: $($tag.architecture)"
530+
Write-Output " os: $($tag.os)"
531+
Write-Output " dockerfile: $($tag.dockerfile)"
534532
}
535533
}
536534
}

0 commit comments

Comments
 (0)