We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c956dd commit 0f34404Copy full SHA for 0f34404
script/vsts/platforms/templates/publish.yml
@@ -4,6 +4,12 @@ parameters:
4
5
steps:
6
- ${{ each artifact in parameters.artifacts }}:
7
+
8
+ - pwsh: |
9
+ Write-Host "${{artifact.dir}}/${{artifact.filename}}"
10
+ Test-File ${{artifact.dir}}/${{artifact.filename}}
11
12
13
- task: PublishBuildArtifacts@1
14
inputs:
15
PathtoPublish: ${{artifact.dir}}/${{artifact.filename}}
script/vsts/platforms/windows.yml
@@ -46,6 +46,9 @@ jobs:
46
BUILD_ARCH: $(buildArch)
47
displayName: Set FileID based on the arch
48
49
50
+ echo $env:FileID
51
52
- template: templates/publish.yml
53
parameters:
54
artifacts:
0 commit comments