From 2a10aa0226c5ee7c46e4aef51a57c6621ee19b85 Mon Sep 17 00:00:00 2001 From: Daniel Dada Date: Mon, 15 Dec 2025 11:49:17 +0300 Subject: [PATCH] ci: removed install cmake step for windows --- .github/workflows/Test NSIS.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/Test NSIS.yml b/.github/workflows/Test NSIS.yml index 048fbf9..a90786a 100644 --- a/.github/workflows/Test NSIS.yml +++ b/.github/workflows/Test NSIS.yml @@ -16,10 +16,7 @@ jobs: - name: Install NSIS run: choco install nsis --no-progress -y - - name: Install CMake - run: choco install cmake --no-progress -y - - - name: Setup MSVC (Visual Studio Build Tools) + - name: Setup MSVC uses: microsoft/setup-msbuild@v2 - name: Configure project @@ -29,7 +26,7 @@ jobs: run: cmake --build build --config Release - name: Generate NSIS installer - run: cd build && \\ + run: cd build && \ cpack -G NSIS - name: Upload installer