File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -80,6 +80,7 @@ New-DraftRelease -RepositoryName vscode-powershell
8080# Upload PowerShellEditorServices.zip (for other extensions)
8181# Upload VSIX and Install-VSCode.ps1
8282# Publish draft releases and merge (don't squash!) branches
83+ # Check telemetry for stability before releasing
8384vsce publish --packagePath ./PowerShell-<version>.vsix
8485# Update Install-VSCode.ps1 on gallery
8586Publish-Script -Path ./Install-VSCode.ps1 -NuGetApiKey (Get-Secret "PowerShell Gallery API Key" -AsPlainText)
Original file line number Diff line number Diff line change @@ -238,7 +238,7 @@ function Update-Changelog {
238238 if ($PSCmdlet.ShouldProcess (" $RepositoryName /$ChangelogFile " , " git" )) {
239239 Update-Branch - Version $Version
240240 git add $ChangelogFile
241- git commit - m " Update CHANGELOG for $Version "
241+ git commit - m " Update CHANGELOG for `` v $Version `` "
242242 }
243243
244244 Pop-Location
@@ -324,7 +324,7 @@ function Update-Version {
324324
325325 if ($PSCmdlet.ShouldProcess (" $RepositoryName /v$Version " , " git commit" )) {
326326 Update-Branch - Version $Version
327- git commit - m " Bump version to v$Version "
327+ git commit - m " Bump version to `` v$Version `` "
328328 }
329329
330330 Pop-Location
@@ -350,6 +350,7 @@ function New-DraftRelease {
350350 $ReleaseParams = @ {
351351 Draft = $true
352352 Tag = " v$Version "
353+ Committish = " release/v$Version "
353354 Name = " v$Version "
354355 Body = $ChangeLog
355356 PreRelease = [bool ]$Version.PreReleaseLabel
You can’t perform that action at this time.
0 commit comments