Skip to content

Commit 0f34404

Browse files
committed
debug x86 publish
1 parent 0c956dd commit 0f34404

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

script/vsts/platforms/templates/publish.yml

+6
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ parameters:
44

55
steps:
66
- ${{ each artifact in parameters.artifacts }}:
7+
8+
- pwsh: |
9+
Write-Host "${{artifact.dir}}/${{artifact.filename}}"
10+
Test-File ${{artifact.dir}}/${{artifact.filename}}
11+
12+
713
- task: PublishBuildArtifacts@1
814
inputs:
915
PathtoPublish: ${{artifact.dir}}/${{artifact.filename}}

script/vsts/platforms/windows.yml

+3
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,9 @@ jobs:
4646
BUILD_ARCH: $(buildArch)
4747
displayName: Set FileID based on the arch
4848
49+
- pwsh: |
50+
echo $env:FileID
51+
4952
- template: templates/publish.yml
5053
parameters:
5154
artifacts:

0 commit comments

Comments
 (0)