From fa4a56c4675ea7219f9d56dfeefce368d4f35092 Mon Sep 17 00:00:00 2001 From: momo5502 Date: Sat, 7 May 2022 17:23:43 +0200 Subject: [PATCH] Download fix --- .github/workflows/build.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c21c6e2..a2f7099 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -31,11 +31,10 @@ jobs: with: msbuild-architecture: x64 - - name: Download WDK - run: curl -L --output wdksetup.exe https://go.microsoft.com/fwlink/?linkid=2166289 - - name: Install WDK - run: wdksetup.exe /features + /q + run: | + curl -L --output wdksetup.exe https://go.microsoft.com/fwlink/?linkid=2166289 + wdksetup.exe /features + /q - name: Setup CMake uses: lukka/get-cmake@latest