From 590d126a0509bc20c773deb5ccb7767c8bacdcad Mon Sep 17 00:00:00 2001 From: Oliver Cheng Date: Thu, 11 Jul 2024 16:05:41 +1000 Subject: [PATCH] Fix bug where the wrong runner was used --- .github/workflows/build.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index e6764ea..afc98f8 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -6,8 +6,8 @@ jobs: strategy: matrix: include: - - os: centos-7 - label: linux-x64 + - os: ubuntu-latest + label: centos-7 container: quay.io/pypa/manylinux2014_x86_64 - os: macos-14 label: macos-arm64 @@ -17,7 +17,7 @@ jobs: container: ${{ matrix.container }} steps: - name: Install nodejs v20 - if: ${{ matrix.os == 'centos-7' }} + if: ${{ matrix.label == 'centos-7' }} run: yum install nodejs20 - name: Checkout code