oh-my-posh/.github/workflows/microsoft_store.yml

55 lines
1.9 KiB
YAML
Raw Normal View History

2022-05-28 15:47:10 -07:00
name: Windows Store
2022-05-26 12:45:52 -07:00
on:
release:
types: [published]
2022-05-26 12:45:52 -07:00
jobs:
microsoft_store:
2022-05-28 15:47:10 -07:00
name: Publish To Windows Store
2022-05-26 12:45:52 -07:00
runs-on: ubuntu-latest
steps:
- name: Configure Store Credentials 🔑
uses: jandedobbeleer/store-submission@submission-status
2022-05-26 12:45:52 -07:00
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 }}
only-on-ready: true
2022-05-26 12:45:52 -07:00
- name: Update draft submission
uses: jandedobbeleer/store-submission@submission-status
2022-05-26 12:45:52 -07:00
with:
command: update
product-update: '{
"packages":[
{
"packageUrl":"https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/${{ github.event.release.tag_name }}/install-x64.msi",
"languages":["en"],
"architectures":["X64"],
"installerParameters":"/quiet INSTALLER=ws",
"isSilentInstall":false
},
{
"packageUrl":"https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/${{ github.event.release.tag_name }}/install-arm64.msi",
"languages":["en"],
"architectures":["Arm64"],
"installerParameters":"/quiet INSTALLER=ws",
"isSilentInstall":false
},
{
"packageUrl":"https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/${{ github.event.release.tag_name }}/install-x86.msi",
"languages":["en"],
"architectures":["X86"],
"installerParameters":"/quiet INSTALLER=ws",
"isSilentInstall":false
}
]
2022-05-26 12:45:52 -07:00
}'
- name: Publish Submission
uses: jandedobbeleer/store-submission@submission-status
2022-05-26 12:45:52 -07:00
with:
command: publish