File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -47,15 +47,15 @@ stages:
4747 npm install --global vsce
4848 displayName: 'Install vsce'
4949 - pwsh : |
50- $artifactFolderPrefix = "VSIX_Release_ "
50+ $artifactFolder = "VSIX_Release "
5151 if ("${{ parameters.uploadPrerelease }}" -eq "true") {
52- $artifactFolderPrefix = "VSIX_Prerelease_ "
52+ $artifactFolder = "VSIX_Prerelease "
5353 }
5454
55- Write-Host "Using artifacts from $artifactFolderPrefix "
55+ Write-Host "Using artifacts from $artifactFolder "
5656
5757 # Our build pipeline would generated build based on attempt number. Publishing the latest attempt.
58- $allArtifacts = Get-ChildItem -Path "$artifactFolderPrefix *" | Sort-Object -Descending
58+ $allArtifacts = Get-ChildItem -Path "$artifactFolder *" | Sort-Object -Descending
5959 if ($allArtifacts.Length -eq 0) {
6060 throw "No Artifacts is downloaded."
6161 }
You can’t perform that action at this time.
0 commit comments