-
Notifications
You must be signed in to change notification settings - Fork 7.6k
Template publication automation #43659
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
check-spelling found more than 20 potential problems in the proposed changes. Check the Files changed tab for more details.
This comment has been minimized.
This comment has been minimized.
...ionTemplate/TemplateCmdPalExtension/TemplateCmdPalExtension/Publication/PublicationREADME.md
Fixed
Show fixed
Hide fixed
...ionTemplate/TemplateCmdPalExtension/TemplateCmdPalExtension/Publication/PublicationREADME.md
Fixed
Show fixed
Hide fixed
...ionTemplate/TemplateCmdPalExtension/TemplateCmdPalExtension/Publication/PublicationREADME.md
Fixed
Show fixed
Hide fixed
...plateCmdPalExtension/TemplateCmdPalExtension/Publication/one-time-store-publishing-setup.ps1
Fixed
Show fixed
Hide fixed
...plateCmdPalExtension/TemplateCmdPalExtension/Publication/one-time-store-publishing-setup.ps1
Fixed
Show fixed
Hide fixed
...e/TemplateCmdPalExtension/TemplateCmdPalExtension/Publication/winget-resources/build-exe.ps1
Fixed
Show fixed
Hide fixed
...e/TemplateCmdPalExtension/TemplateCmdPalExtension/Publication/winget-resources/build-exe.ps1
Fixed
Show fixed
Hide fixed
...plateCmdPalExtension/TemplateCmdPalExtension/Publication/winget-resources/setup-template.iss
Fixed
Show fixed
Hide fixed
...plateCmdPalExtension/TemplateCmdPalExtension/Publication/winget-resources/setup-template.iss
Fixed
Show fixed
Hide fixed
...plateCmdPalExtension/TemplateCmdPalExtension/Publication/winget-resources/setup-template.iss
Fixed
Show fixed
Hide fixed
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
|
Docs update PR: MicrosoftDocs/windows-dev-docs#5738 |
@check-spelling-bot Report🔴 Please reviewSee the 📂 files view, the 📜action log, or 📝 job summary for details.Unrecognized words (1)WASDK These words are not needed and should be removedCLITo CVS Notavailable toolgood Uninitializes wasdkTo accept these unrecognized words as correct and remove the previously acknowledged and now absent words, you could run the following commands... in a clone of the git@github.com:microsoft/PowerToys.git repository curl -s -S -L 'https://raw.githubusercontent.com/check-spelling/check-spelling/c635c2f3f714eec2fcf27b643a1919b9a811ef2e/apply.pl' |
perl - 'https://github.com/microsoft/PowerToys/actions/runs/20352210426/attempts/1' &&
git commit -m 'Update check-spelling metadata'Forbidden patterns 🙅 (1)In order to address this, you could change the content to not match the forbidden patterns (comments before forbidden patterns may help explain why they're forbidden), add patterns for acceptable instances, or adjust the forbidden patterns themselves. These forbidden patterns matched content: Should be
|
| ❌ Errors | Count |
|---|---|
| ❌ check-file-path | 1 |
| ❌ forbidden-pattern | 1 |
See ❌ Event descriptions for more information.
If the flagged items are 🤯 false positives
If items relate to a ...
-
binary file (or some other file you wouldn't want to check at all).
Please add a file path to the
excludes.txtfile matching the containing file.File paths are Perl 5 Regular Expressions - you can test yours before committing to verify it will match your files.
^refers to the file's path from the root of the repository, so^README\.md$would exclude README.md (on whichever branch you're using). -
well-formed pattern.
If you can write a pattern that would match it,
try adding it to thepatterns.txtfile.Patterns are Perl 5 Regular Expressions - you can test yours before committing to verify it will match your lines.
Note that patterns can't match multiline strings.
Summary of the Pull Request
This PR adds comprehensive publication tooling to the CmdPal extension template, enabling developers to easily publish their extensions to both Microsoft Store and WinGet for the first time.
Still missing:
PR Checklist
Detailed Description of the Pull Request / Additional comments
A
Publicationfolder created to contain publication scripts from MicrosoftDocs/windows-dev-docs#5698Microsoft Store Publishing
one-time-store-pubishing-setup.ps1): Automates configuration of Store-specific settings (Package Identity Name, Publisher Certificate, Display Name, etc.)build-msix-bundles.ps1): Builds x64 and ARM64 MSIX packages and creates combined.msixbundlefiles for Store submissionmicrosoft-store-resources/): Contains auto-generatedbundle_mapping.txtfor bundle creationWinGet Publishing
one-time-winget-publishing-setup.ps1): Configures extension for WinGet publishing via EXE installerwinget-resources/build-exe.ps1): Builds standalone EXE installer for WinGet distributionwinget-resources/setup-template.iss): Professional installer template with COM registrationwinget-resources/release-extension.yml): Automated CI/CD for building and releasing installersValidation Steps Performed