Submit Microsoft.PowerToys package to Windows Store #6
This file contains 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
name: Submit Microsoft.PowerToys package to Windows Store | |
on: | |
workflow_dispatch: | |
release: | |
types: [published] | |
jobs: | |
microsoft_store: | |
name: Publish Microsoft Store | |
runs-on: ubuntu-latest | |
steps: | |
- name: Get latest URL from public releases | |
id: releaseVars | |
run: | | |
release=$(curl https://api.github.com/repos/Microsoft/PowerToys/releases | jq '[.[]|select(.name | contains("Release"))][0]') | |
assets=$(jq -n "$release" | jq '.assets') | |
powerToysSetup=$(jq -n "$assets" | jq '[.[]|select(.name | contains("PowerToysSetup"))]') | |
echo ::set-output name=powerToysInstallerX64Url::$(jq -n "$powerToysSetup" | jq -r '[.[]|select(.name | contains("x64"))][0].browser_download_url') | |
echo ::set-output name=powerToysInstallerArm64Url::$(jq -n "$powerToysSetup" | jq -r '[.[]|select(.name | contains("arm64"))][0].browser_download_url') | |
- name: Configure Store Credentials | |
uses: microsoft/store-submission@v1 | |
with: | |
command: configure | |
type: win32 | |
seller-id: ${{ secrets.SELLER_ID }} | |
product-id: ${{ secrets.PRODUCT_ID }} | |
tenant-id: ${{ secrets.TENANT_ID }} | |
client-id: ${{ secrets.CLIENT_ID }} | |
client-secret: ${{ secrets.CLIENT_SECRET }} | |
- name: Update draft submission | |
uses: microsoft/store-submission@v1 | |
with: | |
command: update | |
product-update: '{ | |
"packages":[ | |
{ | |
"packageUrl":"${{ steps.releaseVars.outputs.powerToysInstallerX64Url }}", | |
"languages":["zh-hans", "zh-hant", "en", "cs", "nl", "fr", "pt", "pt-br", "de", "hu", "it", "ja", "ko", "pl", "ru", "es", "tr"], | |
"architectures":["X64"], | |
"installerParameters":"/quiet /norestart", | |
"isSilentInstall":true | |
}, | |
{ | |
"packageUrl":"${{ steps.releaseVars.outputs.powerToysInstallerArm64Url }}", | |
"languages":["zh-hans", "zh-hant", "en", "cs", "nl", "fr", "pt", "pt-br", "de", "hu", "it", "ja", "ko", "pl", "ru", "es", "tr"], | |
"architectures":["Arm64"], | |
"installerParameters":"/quiet /norestart", | |
"isSilentInstall":true | |
} | |
] | |
}' | |
- name: Publish Submission | |
uses: microsoft/store-submission@v1 | |
with: | |
command: publish |