File tree 2 files changed +6
-3
lines changed
2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 8
8
- pwsh : |
9
9
$PackageJson = Get-Content -Raw $(Build.SourcesDirectory)/package.json | ConvertFrom-Json
10
10
$(Build.SourcesDirectory)/tools/setupReleaseTools.ps1 -Token $(GitHubToken)
11
- New-DraftRelease -RepositoryName vscode-powershell -Assets $(Pipeline.Workspace)/vscode-powershell/powershell-$($PackageJson.version).vsix,$(Pipeline.Workspace)/vscode-powershell/Install-VSCode.ps1
11
+ # New-DraftRelease -RepositoryName vscode-powershell -Assets $(Pipeline.Workspace)/vscode-powershell/powershell-$($PackageJson.version).vsix,$(Pipeline.Workspace)/vscode-powershell/Install-VSCode.ps1
12
+ echo $PackageJson.version
12
13
displayName : Drafting a GitHub Release
Original file line number Diff line number Diff line change @@ -17,12 +17,14 @@ steps:
17
17
'--pat'
18
18
'$(VsceToken)'
19
19
)
20
- npm run publish -- @PublishArgs
20
+ # npm run publish -- @PublishArgs
21
+ echo @PublishArgs
21
22
displayName : Publishing VSIX to VS Code Marketplace
22
23
23
24
# NOTE: We rarely update this script, so we can ignore errors from the gallery
24
25
# caused by us trying to re-publish an updated script.
25
26
- pwsh : |
26
- Publish-Script -Path $(Pipeline.Workspace)/vscode-powershell/Install-VSCode.ps1 -NuGetApiKey $(GalleryToken)
27
+ # Publish-Script -Path $(Pipeline.Workspace)/vscode-powershell/Install-VSCode.ps1 -NuGetApiKey $(GalleryToken)
28
+ echo skip
27
29
displayName : Publishing Install-VSCode.ps1 to PowerShell Gallery
28
30
continueOnError : true
You can’t perform that action at this time.
0 commit comments