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
80
80
# Upload PowerShellEditorServices.zip (for other extensions)
81
81
# Upload VSIX and Install-VSCode.ps1
82
82
# Publish draft releases and merge (don't squash!) branches
83
+ # Check telemetry for stability before releasing
83
84
vsce publish --packagePath ./PowerShell-<version>.vsix
84
85
# Update Install-VSCode.ps1 on gallery
85
86
Publish-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 {
238
238
if ($PSCmdlet.ShouldProcess (" $RepositoryName /$ChangelogFile " , " git" )) {
239
239
Update-Branch - Version $Version
240
240
git add $ChangelogFile
241
- git commit - m " Update CHANGELOG for $Version "
241
+ git commit - m " Update CHANGELOG for `` v $Version `` "
242
242
}
243
243
244
244
Pop-Location
@@ -324,7 +324,7 @@ function Update-Version {
324
324
325
325
if ($PSCmdlet.ShouldProcess (" $RepositoryName /v$Version " , " git commit" )) {
326
326
Update-Branch - Version $Version
327
- git commit - m " Bump version to v$Version "
327
+ git commit - m " Bump version to `` v$Version `` "
328
328
}
329
329
330
330
Pop-Location
@@ -350,6 +350,7 @@ function New-DraftRelease {
350
350
$ReleaseParams = @ {
351
351
Draft = $true
352
352
Tag = " v$Version "
353
+ Committish = " release/v$Version "
353
354
Name = " v$Version "
354
355
Body = $ChangeLog
355
356
PreRelease = [bool ]$Version.PreReleaseLabel
You can’t perform that action at this time.
0 commit comments