mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-16 03:37:59 +01:00
[CI]Added Arm64 support on the store submission task. (#18655)
* Added Arm64 support on the store submission task. * Apply suggestions from code review Co-authored-by: Clint Rutkas <clint@rutkas.com>
This commit is contained in:
committed by
GitHub
parent
1490fb300c
commit
55f38016d7
10
.github/workflows/msstore-submissions.yml
vendored
10
.github/workflows/msstore-submissions.yml
vendored
@@ -18,6 +18,7 @@ jobs:
|
|||||||
assets=$(jq -n "$release" | jq '.assets')
|
assets=$(jq -n "$release" | jq '.assets')
|
||||||
powerToysSetup=$(jq -n "$assets" | jq '[.[]|select(.name | contains("PowerToysSetup"))]')
|
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=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
|
- name: Configure Store Credentials
|
||||||
uses: microsoft/store-submission@v1
|
uses: microsoft/store-submission@v1
|
||||||
@@ -40,7 +41,14 @@ jobs:
|
|||||||
"packageUrl":"${{ steps.releaseVars.outputs.powerToysInstallerX64Url }}",
|
"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"],
|
"languages":["zh-hans", "zh-hant", "en", "cs", "nl", "fr", "pt", "pt-br", "de", "hu", "it", "ja", "ko", "pl", "ru", "es", "tr"],
|
||||||
"architectures":["X64"],
|
"architectures":["X64"],
|
||||||
"installerParameters":"-passive",
|
"installerParameters":"/passive /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":"/passive /norestart",
|
||||||
"isSilentInstall":true
|
"isSilentInstall":true
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
Reference in New Issue
Block a user