Skip to content

Commit

Permalink
Fix bug where the wrong runner was used
Browse files Browse the repository at this point in the history
  • Loading branch information
olliecheng authored Jul 11, 2024
1 parent 87aac2b commit 590d126
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 590d126

Please sign in to comment.