Skip to content

Commit f7942d2

Browse files
committed
Correctly ignore failure from re-publishing Install-VSCode.ps1
We actually need to ignore the task's failure, not the failure in the script.
1 parent 64c3163 commit f7942d2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.vsts-ci/templates/publish-markets.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,6 @@ steps:
1313
# NOTE: We rarely update this script, so we can ignore errors from the gallery
1414
# caused by us trying to re-publish an updated script.
1515
- pwsh: |
16-
Publish-Script -Path $(Pipeline.Workspace)/vscode-powershell/Install-VSCode.ps1 -ErrorAction Continue -NuGetApiKey $(GalleryToken)
16+
Publish-Script -Path $(Pipeline.Workspace)/vscode-powershell/Install-VSCode.ps1 -NuGetApiKey $(GalleryToken)
1717
displayName: Publishing Install-VSCode.ps1 to PowerShell Gallery
18+
continueOnError: true

0 commit comments

Comments
 (0)