From 0a7f63db04f57a5dcc2eec82cc773101f74c0f07 Mon Sep 17 00:00:00 2001 From: Luke Street Date: Wed, 25 Aug 2021 18:59:53 -0400 Subject: [PATCH] Fix platform check in workflow --- .github/workflows/build.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 9b296c7..5d50d65 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -18,13 +18,13 @@ jobs: steps: - name: Install LLVM and Clang # required for bindgen to work, see https://github.com/rust-lang/rust-bindgen/issues/1797 uses: KyleMayes/install-llvm-action@v1 - if: matrix.config.platform == 'windows-latest' + if: matrix.platform == 'windows-latest' with: version: 12.0.1 directory: ${{ runner.temp }}/llvm - name: Set LIBCLANG_PATH run: echo "LIBCLANG_PATH=$((gcm clang).source -replace "clang.exe")" >> $env:GITHUB_ENV - if: matrix.config.platform == 'windows-latest' + if: matrix.platform == 'windows-latest' - uses: actions/checkout@v2 with: submodules: recursive