Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/cpp-packaging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -394,6 +394,12 @@ jobs:
if: startsWith(matrix.os, 'windows')
uses: microsoft/setup-msbuild@v1.1

# Force the build to use the stable 10.0.22621.0 SDK
- name: Set stable Windows SDK version
if: startsWith(matrix.os, 'windows')
shell: pwsh
run: echo "WindowsSDKVersion=10.0.22621.0" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append

- name: Cache vcpkg C++ dependencies
id: cache_vcpkg
uses: actions/cache@v3
Expand Down
Loading