mirror of
https://github.com/sudosylabs/vnidrop.git
synced 2026-08-05 02:29:55 +02:00
fix(ci): pass named MSIX build arguments
This commit is contained in:
10
.github/workflows/windows-store.yml
vendored
10
.github/workflows/windows-store.yml
vendored
@@ -130,11 +130,11 @@ jobs:
|
||||
- name: Create and validate Store package
|
||||
shell: pwsh
|
||||
run: |
|
||||
$arguments = @(
|
||||
"-Version", "${{ steps.version.outputs.app }}"
|
||||
"-AppImage", ".\desktopApp\build\compose\binaries\main-release\app\VniDrop"
|
||||
"-OutputDirectory", ".\build\release\windows"
|
||||
)
|
||||
$arguments = @{
|
||||
Version = "${{ steps.version.outputs.app }}"
|
||||
AppImage = ".\desktopApp\build\compose\binaries\main-release\app\VniDrop"
|
||||
OutputDirectory = ".\build\release\windows"
|
||||
}
|
||||
& .\packaging\windows\build-msix.ps1 @arguments
|
||||
|
||||
- name: Upload Store artifacts
|
||||
|
||||
Reference in New Issue
Block a user