Fix: Wingetcreate installer count mismatch in release pipeline#568
Merged
Conversation
…taller count mismatch
Contributor
There was a problem hiding this comment.
Pull request overview
This PR fixes the WinGet release step in the Azure DevOps release pipeline by passing all installer URLs expected by the WinGet manifest, preventing wingetcreate from failing due to an installer count mismatch.
Changes:
- Add x64/ARM64 portable
.zipinstaller URLs alongside the existing x64/ARM64.msixURLs. - Update logging to print all four installer URLs for easier troubleshooting.
- Update the
wingetcreate update ... --urlsinvocation to include all four URLs in manifest order.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Contributor
Build Metrics ReportBinary Sizes
Test Results✅ 1192 passed, 1 skipped out of 1193 tests in 468.5s (+9.0s vs. baseline) Test Coverage❌ 17.2% line coverage, 36.3% branch coverage · ✅ no change vs. baseline CLI Startup Time40ms median (x64, Updated 2026-06-03 21:30:43 UTC · commit |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Winget release failed because two portable installers were added to our manifest for 0.3.1, which brought the total installer count up to 4.
Our script was only passing two url's, causing winget to error out on an installer count mismatch.