ci: setup msstore update

This commit is contained in:
Gauthier Roebroeck 2023-09-11 16:28:24 +08:00
parent b4c27d84a6
commit 88983a8199
2 changed files with 21 additions and 0 deletions

View File

@ -197,3 +197,13 @@ jobs:
with:
message: 'chore(release): ${{ needs.version.outputs.version_next }} [skip ci]'
default_author: github_actions
- name: Run Conveyor - Microsoft Store
uses: hydraulic-software/conveyor/actions/build@v11.1
with:
command: -f conveyor.msstore.ci.conf make site -o ./output/msstore
signing_key: ${{ secrets.CONVEYOR_SIGNING_KEY }}
agree_to_license: 1
env:
CONVEYOR_MSSTORE_CLIENT_ID: ${{ secrets.CONVEYOR_MSSTORE_CLIENT_ID }}
CONVEYOR_MSSTORE_CLIENT_SECRET: ${{ secrets.CONVEYOR_MSSTORE_CLIENT_SECRET }}
CONVEYOR_MSSTORE_TENANT_ID: ${{ secrets.CONVEYOR_MSSTORE_TENANT_ID }}

11
conveyor.msstore.ci.conf Normal file
View File

@ -0,0 +1,11 @@
include required("conveyor.msstore.conf")
app {
windows {
store {
client-id = ${env.CONVEYOR_MSSTORE_CLIENT_ID}
client-secret = ${env.CONVEYOR_MSSTORE_CLIENT_SECRET}
tenant-id = ${env.CONVEYOR_MSSTORE_TENANT_ID}
}
}
}