feat(store): migrate to MSI

This commit is contained in:
Jan De Dobbeleer 2024-11-24 19:23:18 +01:00 committed by Jan De Dobbeleer
parent ab1fb14988
commit 3d48936e67

View file

@ -29,24 +29,24 @@ jobs:
product-update: '{ product-update: '{
"packages":[ "packages":[
{ {
"packageUrl":"https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v${{ github.event.inputs.version }}/install-amd64.exe", "packageUrl":"https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v${{ github.event.inputs.version }}/install-x64.msi",
"languages":["en"], "languages":["en"],
"architectures":["X64"], "architectures":["X64"],
"installerParameters":"/VERYSILENT /CURRENTUSER /INSTALLER=ws", "installerParameters":"/quiet INSTALLER=ws",
"isSilentInstall":false "isSilentInstall":false
}, },
{ {
"packageUrl":"https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v${{ github.event.inputs.version }}/install-arm64.exe", "packageUrl":"https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v${{ github.event.inputs.version }}/install-arm64.msi",
"languages":["en"], "languages":["en"],
"architectures":["Arm64"], "architectures":["Arm64"],
"installerParameters":"/VERYSILENT /CURRENTUSER /INSTALLER=ws", "installerParameters":"/quiet INSTALLER=ws",
"isSilentInstall":false "isSilentInstall":false
}, },
{ {
"packageUrl":"https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v${{ github.event.inputs.version }}/install-386.exe", "packageUrl":"https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v${{ github.event.inputs.version }}/install-x86.msi",
"languages":["en"], "languages":["en"],
"architectures":["X86"], "architectures":["X86"],
"installerParameters":"/VERYSILENT /CURRENTUSER /INSTALLER=ws", "installerParameters":"/quiet INSTALLER=ws",
"isSilentInstall":false "isSilentInstall":false
} }
] ]