fix(ci): pass named MSIX build arguments

This commit is contained in:
2026-07-16 23:11:32 +02:00
parent afa593b6db
commit 32c2734378

View File

@@ -130,11 +130,11 @@ jobs:
- name: Create and validate Store package - name: Create and validate Store package
shell: pwsh shell: pwsh
run: | run: |
$arguments = @( $arguments = @{
"-Version", "${{ steps.version.outputs.app }}" Version = "${{ steps.version.outputs.app }}"
"-AppImage", ".\desktopApp\build\compose\binaries\main-release\app\VniDrop" AppImage = ".\desktopApp\build\compose\binaries\main-release\app\VniDrop"
"-OutputDirectory", ".\build\release\windows" OutputDirectory = ".\build\release\windows"
) }
& .\packaging\windows\build-msix.ps1 @arguments & .\packaging\windows\build-msix.ps1 @arguments
- name: Upload Store artifacts - name: Upload Store artifacts