Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions tools/releaseBuild/azureDevOps/releasePipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,24 @@ stages:
pool: server
environment: PSReleaseUpdateDotnetDocker

- stage: UpdateWinGet
dependsOn: GitHubManualTasks
displayName: Add manifest entry to winget
jobs:
- deployment: UpdateWinGet
displayName: Add manifest entry to winget
pool: server
environment: PSReleaseUpdateWinGet

- stage: PublishMsix
dependsOn: GitHubManualTasks
displayName: Publish MSIX to store
jobs:
- deployment: PublishMsix
displayName: Publish MSIX to store
pool: server
environment: PSReleasePublishMsix

- stage: BuildInfoJson
dependsOn: GitHubManualTasks
displayName: Upload BuildInfoJson
Expand Down
2 changes: 1 addition & 1 deletion tools/releaseTools.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class CommitNode {
$this.Body = $body
$this.IsBreakingChange = $body -match "\[breaking change\]"

if ($subject -match "\(#(\d+)\)") {
if ($subject -match "\(#(\d+)\)$") {
$this.PullRequest = $Matches[1]
}
}
Expand Down