We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e99fc7 commit a634732Copy full SHA for a634732
1 file changed
azure-pipelines.yml
@@ -52,6 +52,13 @@ steps:
52
targetFolder: '$(Build.ArtifactStagingDirectory)'
53
flattenFolders: true
54
55
+- task: PowerShell@2
56
+ displayName: 'Rename Build Artifacts'
57
+ inputs:
58
+ targetType: 'inline'
59
+ script: 'Get-ChildItem ./*.vsix -Recurse | Rename-Item -NewName {$_.basename + "_" + $env:BUILD_BUILDNUMBER + $_.extension }'
60
+ workingDirectory: '$(Build.ArtifactStagingDirectory)'
61
+
62
- task: PublishBuildArtifacts@1
63
inputs:
64
pathtoPublish: '$(Build.ArtifactStagingDirectory)'
0 commit comments