Skip to content

Commit

Permalink
- name: Print Visual Studio version
Browse files Browse the repository at this point in the history
        run: "C:\Program Files (x86)\Microsoft Visual Studio\Installer\vswhere.exe" -property catalog_productDisplayVersion
        if: matrix.settings.host == 'windows-latest'
        shell: cmd

Signed-off-by: Anush008 <[email protected]>
  • Loading branch information
Anush008 committed Nov 17, 2024
1 parent 96d4567 commit 3b34216
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,9 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Print Visual Studio version
run: "C:\Program Files (x86)\Microsoft Visual Studio\Installer\vswhere.exe" -property catalog_productDisplayVersion
id: print-vs-version
run: |
"C:\Program Files (x86)\Microsoft Visual Studio\Installer\vswhere.exe" -property catalog_productDisplayVersion
if: matrix.settings.host == 'windows-latest'
shell: cmd
- name: Restore Builds
Expand Down

0 comments on commit 3b34216

Please sign in to comment.