From 475c05ca95da898392a04fb26c55f4b9b4a5ed25 Mon Sep 17 00:00:00 2001 From: theoleuthardt Date: Thu, 13 Mar 2025 11:39:01 +0100 Subject: [PATCH] fix: dependecy install of windows worker --- .github/workflows/release.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 729d4b4..825bbef 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -33,7 +33,9 @@ jobs: - name: Install Dependencies (Windows) if: runner.os == 'Windows' - run: choco install cmake --installargs 'ADD_CMAKE_TO_PATH=System' && refreshenv + run: | + choco install cmake --installargs 'ADD_CMAKE_TO_PATH=System' + refreshenv shell: powershell - name: Configure CMake