Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build-release-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -136,14 +136,14 @@ jobs:
}

# Check MSI installer
$msi = Get-ChildItem "msi_build\*.msi" -ErrorAction SilentlyContinue | Select-Object -First 1
$msi = Get-ChildItem "build\gambit-pairing-msi\*.msi" -ErrorAction SilentlyContinue | Select-Object -First 1
if ($msi) {
$size = $msi.Length / 1MB
Write-Host "[+] MSI installer: $($msi.FullName) ($([math]::Round($size, 1)) MB)"
echo "msi_path=$($msi.FullName)" >> $env:GITHUB_ENV
echo "msi_name=$($msi.Name)" >> $env:GITHUB_ENV
} else {
Write-Host "[x] MSI installer not found in msi_build directory"
Write-Host "[x] MSI installer not found in build/gambit-pairing-msi directory"
exit 1
}

Expand Down