Skip to content

Commit fe85006

Browse files
author
Steve Lee (POWERSHELL HE/HIM) (from Dev Box)
committed
explicit download of msix
1 parent 2ca9e3a commit fe85006

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.pipelines/DSC-Official.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -179,14 +179,17 @@ extends:
179179
type: windows
180180
steps:
181181
- download: current
182-
patterns: '**\.msix'
182+
artifact: drop_BuildAndSign_BuildWinx64
183+
patterns: '*.msix'
184+
- download: current
185+
artifact: drop_BuildAndSign_BuildWinarm64
186+
patterns: '*.msix'
183187
- checkout: self
184188
- pwsh: |
185189
Set-Location "$(Build.SourcesDirectory)/DSC"
186-
write-host "Contents of $(ob_outputDirectory)"
187-
dir -r "$(ob_outputDirectory)"
188190
$null = New-Item -ItemType Directory -Path "./bin/msix" -Force -ErrorAction Ignore
189-
Copy-Item "$(ob_outputDirectory)/*.msix" ./bin/msix -Verbose
191+
Copy-Item "$(Pipeline.Workspace)/drop_BuildAndSign_BuildWinx64/*.msix" ./bin/msix -Verbose
192+
Copy-Item "$(Pipeline.Workspace)/drop_BuildAndSign_BuildWinarm64/*.msix" ./bin/msix -Verbose
190193
./build.ps1 -PackageType msixbundle
191194
Copy-Item ./bin/*.msixbundle "$(ob_outputDirectory)"
192195
displayName: 'Create msixbundle'

0 commit comments

Comments
 (0)