File tree Expand file tree Collapse file tree 2 files changed +19
-1
lines changed
Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Original file line number Diff line number Diff line change @@ -225,6 +225,24 @@ stages:
225225 pool : server
226226 environment : PSReleaseUpdateDotnetDocker
227227
228+ - stage : UpdateWinGet
229+ dependsOn : GitHubManualTasks
230+ displayName : Add manifest entry to winget
231+ jobs :
232+ - deployment : UpdateWinGet
233+ displayName : Add manifest entry to winget
234+ pool : server
235+ environment : PSReleaseUpdateWinGet
236+
237+ - stage : PublishMsix
238+ dependsOn : GitHubManualTasks
239+ displayName : Publish MSIX to store
240+ jobs :
241+ - deployment : PublishMsix
242+ displayName : Publish MSIX to store
243+ pool : server
244+ environment : PSReleasePublishMsix
245+
228246- stage : BuildInfoJson
229247 dependsOn : GitHubManualTasks
230248 displayName : Upload BuildInfoJson
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ class CommitNode {
2424 $this.Body = $body
2525 $this.IsBreakingChange = $body -match " \[breaking change\]"
2626
27- if ($subject -match " \(#(\d+)\)" ) {
27+ if ($subject -match " \(#(\d+)\)$ " ) {
2828 $this.PullRequest = $Matches [1 ]
2929 }
3030 }
You can’t perform that action at this time.
0 commit comments