diff options
| author | Mika Lindqvist <postmaster@raasu.org> | 2026-03-10 09:33:04 +0200 |
|---|---|---|
| committer | Hans Kristian Rosbach <hk-github@circlestorm.org> | 2026-03-11 00:58:01 +0100 |
| commit | e1bcfe7e9c629553667c3f72e459bddaa1db0143 (patch) | |
| tree | cc196877d4dbe204c34dc2fdd3fc820eaef3258f | |
| parent | d489933868f4ca5501293f724acc09a5ab306491 (diff) | |
| download | Project-Tick-e1bcfe7e9c629553667c3f72e459bddaa1db0143.tar.gz Project-Tick-e1bcfe7e9c629553667c3f72e459bddaa1db0143.zip | |
[CI] Fix 32-bit ARM release.
| -rw-r--r-- | .github/workflows/release.yml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b4c967b11a..4e1ef3d744 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -69,6 +69,15 @@ jobs: shell: bash run: echo "tag=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_ENV + - name: Install Windows 11 SDK (ARM) + if: matrix.name == 'Windows MSVC ARM' || matrix.name == 'Windows MSVC ARM Compat' + run: | + # Windows 11 SDK (10.0.22621.2428) + # https://developer.microsoft.com/en-us/windows/downloads/sdk-archive/index-legacy + Invoke-WebRequest -Method Get -Uri https://go.microsoft.com/fwlink/p/?LinkId=2250105 -OutFile sdksetup.exe -UseBasicParsing + Unblock-File sdksetup.exe + Start-Process -Wait sdksetup.exe -ArgumentList "/q", "/norestart", "/ceip off" + - name: Generate project files shell: bash run: | |
