Skip to content

Commit

Permalink
Correct msi filename in test block
Browse files Browse the repository at this point in the history
  • Loading branch information
philipbalinov committed Nov 5, 2024
1 parent 39d9470 commit a9b0ecd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pkg_msi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -194,16 +194,16 @@ jobs:
- name: Download MSI Package
uses: actions/download-artifact@v4
with:
name: msi
name: msi-${{ matrix.arch }}
path: dist
- name: Verify digital signature is valid
run: |
cd dist
Get-AuthenticodeSignature -FilePath .\\mondoo.msi
Get-AuthenticodeSignature -FilePath .\\mondoo_${{ matrix.arch }}.msi
- name: Install artifact
run: |
cd dist
msiexec /qn /i mondoo.msi
msiexec /qn /i mondoo_${{ matrix.arch }}.msi
- name: Verify the correct cnquery version is installed
run: |
$version=& 'C:\Program Files\Mondoo\cnquery.exe' version
Expand Down

0 comments on commit a9b0ecd

Please sign in to comment.