We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd4fa68 commit 6c2856eCopy full SHA for 6c2856e
.github/workflows/CI.yml
@@ -76,6 +76,11 @@ jobs:
76
with: { fetch-depth: 0 }
77
- name: Setup MSBuild
78
uses: microsoft/setup-msbuild@v2
79
+ - name: Install Windows SDK 10.0.18362.0
80
+ shell: powershell
81
+ run: |
82
+ Invoke-WebRequest -Uri "https://go.microsoft.com/fwlink/?linkid=2120843" -OutFile "sdksetup.exe"
83
+ Start-Process -FilePath "sdksetup.exe" -ArgumentList "/quiet", "/norestart" -Wait
84
- name: Build
85
env:
86
DEMO_SIGN_PUBKEY: ${{ secrets.SAR_DEMO_SIGN_PUBKEY }}
0 commit comments