-
Notifications
You must be signed in to change notification settings - Fork 8.1k
Automate Store Publishing #25725
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
Automate Store Publishing #25725
Conversation
|
/azp run PowerShell-CI-linux-packaging PowerShell-Windows-Packaging-CI |
|
No pipelines are associated with this pull request. |
|
/azp run PowerShell-CI-linux-packaging, PowerShell-Windows-Packaging-CI |
|
Azure Pipelines successfully started running 2 pipeline(s). |
daxian-dbw
left a comment
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.
@jshigetomi Thank you for making the change!
I left a few comments below.
|
/azp run PowerShell-CI-linux-packaging, PowerShell-Windows-Packaging-CI |
|
Azure Pipelines successfully started running 2 pipeline(s). |
|
I reviewed the changes in |
c0d92fd to
d816844
Compare
|
/azp run PowerShell-Windows-Packaging-CI, PowerShell-CI-linux-packaging |
|
Azure Pipelines successfully started running 2 pipeline(s). |
The variables $IsLTS, $IsStable, and $IsPreview were being used but never initialized. In the main branch, these are set by the channelSelection.yml template (added in PR PowerShell#25725), but in release/v7.4 the backport PR PowerShell#26163 uses stageDependencies to access these values. The PowerShell variables need to be explicitly initialized from the pipeline variables $(LTS), $(STABLE), and $(PREVIEW) at the beginning of the script block.
PR Summary
This pull request introduces significant updates to the PowerShell release pipelines, focusing on automating MSIX package publishing, improving channel selection, and adding configurations for store submissions. The changes include new parameters, templates, and configuration files to streamline the release process.
Pipeline Enhancements for MSIX Publishing:
skipMSIXPublishparameter: A new boolean parameter was added to.pipelines/PowerShell-Release-Official.ymlto allow skipping the MSIX publishing step during the release process.PublishMsixstage to use a newrelease-MSIX-Publish.ymltemplate and conditionally skip publishing based on theskipMSIXPublishparameter.Store Submission Configuration:
PDP.xmlfor store metadata: Added a detailedPDP.xmlfile to define product descriptions, keywords, screenshots, and other metadata for the Microsoft Store submission.SBConfig.jsonfor StoreBroker: Introduced aSBConfig.jsonfile to configure StoreBroker settings, including submission parameters, pricing, and device family support.Channel Selection and Configuration Updates:
channelSelection.ymltemplate: Added a script to determine the release channel (LTS, Stable, or Preview) and set corresponding pipeline variables..pipelines/templates/package-create-msix.ymlto include channel selection, update store configurations (PDP.xmlandSBConfig.json), and automate StoreBroker package creation and upload. [1] [2]PR Context
PR Checklist
.h,.cpp,.cs,.ps1and.psm1files have the correct copyright header