Skip to content

Commit

Permalink
Account for x86 == Win32
Browse files Browse the repository at this point in the history
  • Loading branch information
keveleigh committed Jun 22, 2022
1 parent bd821e2 commit 5ee6d0e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pipelines/templates/tasks/build-appx.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,8 @@ steps:
- task: CopyFiles@2
displayName: Copy ${{ arch }} AppX to artifacts staging directory
inputs:
sourceFolder: ${{ parameters.BuildFolderPath }}/AppPackages/${{ parameters.ProjectName }}/${{ parameters.ProjectName }}_$(MRTKVersion).0_${{ arch }}_Master_Test
${{ if eq(arch, 'x86') }}:
sourceFolder: ${{ parameters.BuildFolderPath }}/AppPackages/${{ parameters.ProjectName }}/${{ parameters.ProjectName }}_$(MRTKVersion).0_Win32_Master_Test
${{ if not(eq(arch, 'x86')) }}:
sourceFolder: ${{ parameters.BuildFolderPath }}/AppPackages/${{ parameters.ProjectName }}/${{ parameters.ProjectName }}_$(MRTKVersion).0_${{ arch }}_Master_Test
targetFolder: $(Build.ArtifactStagingDirectory)/Apps/uwp-${{ arch }}

0 comments on commit 5ee6d0e

Please sign in to comment.