Skip to content

Commit

Permalink
Merge pull request #5497 from hannes-steffenhagen-diffblue/CD/fix-msi…
Browse files Browse the repository at this point in the history
…-release

Fix bug preventing creation of MSIs on release
  • Loading branch information
NlightNFotis authored Sep 17, 2020
2 parents c21ede2 + 748e907 commit 1cc1bf8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release-packages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:
Set-Location build
$cpack = "$(Split-Path -Parent (Get-Command cmake).Source)\cpack.exe"
& $cpack . -C Release
$msi_name = (Get-ChildItem -name *.msi).Name
$msi_name = Get-ChildItem -Filter *.msi -Name
Write-Output "::set-output name=msi_installer::build/$msi_name"
Write-Output "::set-output name=msi_name::$msi_name"
- name: Get release info
Expand Down

0 comments on commit 1cc1bf8

Please sign in to comment.