Skip to content

Commit 57035b0

Browse files
committed
chore: fix conditional
1 parent 1517943 commit 57035b0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/menlo-build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -412,7 +412,7 @@ jobs:
412412
sudo apt-get install -y build-essential vulkan-sdk
413413
414414
- name: Install Clang for Windows Arm64
415-
if: ${{ matrix.os == 'win'}} && ${{ matrix.name == 'windows-arm64' }}
415+
if: ${{ matrix.os == 'win'}} && ${{ matrix.name == 'arm64' }}
416416
run: |
417417
choco install llvm
418418
clang --version
@@ -446,11 +446,11 @@ jobs:
446446
dotnet-version: "8.0.x"
447447

448448
- name: Add msbuild to PATH
449-
if: runner.os == 'Windows' && !(matrix.os == 'win' && matrix.name == 'windows-arm64')
449+
if: runner.os == 'Windows' && !(matrix.os == 'win' && matrix.name == 'arm64')
450450
uses: ilammy/[email protected]
451451

452452
- name: MSVC dev cmd (LLVM cross x64 ARM64)
453-
if: matrix.os == 'win' && matrix.name == 'windows-arm64'
453+
if: matrix.os == 'win' && matrix.name == 'arm64'
454454
uses: ilammy/[email protected]
455455
with:
456456
arch: amd64_arm64

0 commit comments

Comments
 (0)