File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -179,14 +179,17 @@ extends:
179
179
type : windows
180
180
steps :
181
181
- download : current
182
- patterns : ' **\.msix'
182
+ artifact : drop_BuildAndSign_BuildWinx64
183
+ patterns : ' *.msix'
184
+ - download : current
185
+ artifact : drop_BuildAndSign_BuildWinarm64
186
+ patterns : ' *.msix'
183
187
- checkout : self
184
188
- pwsh : |
185
189
Set-Location "$(Build.SourcesDirectory)/DSC"
186
- write-host "Contents of $(ob_outputDirectory)"
187
- dir -r "$(ob_outputDirectory)"
188
190
$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
190
193
./build.ps1 -PackageType msixbundle
191
194
Copy-Item ./bin/*.msixbundle "$(ob_outputDirectory)"
192
195
displayName: 'Create msixbundle'
You can’t perform that action at this time.
0 commit comments