diff --git a/pipeline-templates/package-vsix.yaml b/pipeline-templates/package-vsix.yaml index a446459f82..4eb75f8117 100644 --- a/pipeline-templates/package-vsix.yaml +++ b/pipeline-templates/package-vsix.yaml @@ -62,7 +62,7 @@ jobs: - task: CmdLine@2 displayName: 🤌 Rename Signed VSIX inputs: - script: rename ".\packages\$(package-name)-$(GetVersion.version).vsix" $(package-name)-$(GetVersion.version)-signed.vsix + script: rename "$(dir-name)/$(package-name)-$(GetVersion.version).vsix" $(dir-name)/$(package-name)-$(GetVersion.version)-unsigned.vsix - task: CopyFiles@2 displayName: '📩 Copy Artifact' inputs: diff --git a/pipeline-templates/publish.yaml b/pipeline-templates/publish.yaml index 6404ed9224..2d74b1bee8 100644 --- a/pipeline-templates/publish.yaml +++ b/pipeline-templates/publish.yaml @@ -49,7 +49,7 @@ jobs: $basePublishArgs = , "publish" $basePublishArgs += '--azure-credential' $basePublishArgs += '--packagePath' - $publishArgs = $basePublishArgs + 'vscode-dotnet-runtime-$(GetVersion.version)-signed.vsix' + $publishArgs = $basePublishArgs + 'vscode-dotnet-runtime-$(GetVersion.version).vsix' If ("${{ parameters.SignType }}" -ne "Real") { Write-Host "With a test-signed build, the command to publish is printed instead of run." Write-Host "##[command]vsce $publishArgs"