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 1176998 commit 6323d6fCopy full SHA for 6323d6f
azure-pipelines/release.yml
@@ -56,13 +56,13 @@ jobs:
56
$additionalPublishArgs += '--packagePath'
57
$additionalPublishArgs += Get-ChildItem $publishArtifacts *.vsix
58
59
- if ($({ parameters.test-run })) {
+ If ("$({ parameters.test-run })" -eq "true") {
60
Write-Host "In test mode, command is printed instead of run."
61
Write-Host "Command run is: vsce $($additionalPublishArgs)."
62
Write-Host "🔒 Verify PAT."
63
vsce verify-pat ms-dotnettools
64
}
65
- else {
+ Else {
66
vsce @additionalPublishArgs
67
68
displayName: 🚀 Publish to Marketplace
0 commit comments