Skip to content

Commit 1cc1bf8

Browse files
authored
Merge pull request #5497 from hannes-steffenhagen-diffblue/CD/fix-msi-release
Fix bug preventing creation of MSIs on release
2 parents c21ede2 + 748e907 commit 1cc1bf8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release-packages.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ jobs:
8585
Set-Location build
8686
$cpack = "$(Split-Path -Parent (Get-Command cmake).Source)\cpack.exe"
8787
& $cpack . -C Release
88-
$msi_name = (Get-ChildItem -name *.msi).Name
88+
$msi_name = Get-ChildItem -Filter *.msi -Name
8989
Write-Output "::set-output name=msi_installer::build/$msi_name"
9090
Write-Output "::set-output name=msi_name::$msi_name"
9191
- name: Get release info

0 commit comments

Comments
 (0)