diff options
author | Stefan Behnel <stefan_ml@behnel.de> | 2023-01-03 08:05:17 +0100 |
---|---|---|
committer | Stefan Behnel <stefan_ml@behnel.de> | 2023-01-03 08:05:17 +0100 |
commit | 88cbcc4538416cca1eae4b8a92d902096cdb11bc (patch) | |
tree | 19a9537dc782a64d49c4bdae37dcd961fefbaebf | |
parent | ef48b57837fdb2b052b58624236c6174d4d40788 (diff) | |
download | python-lxml-88cbcc4538416cca1eae4b8a92d902096cdb11bc.tar.gz |
Avoid using two different conditions for the same thing.
-rw-r--r-- | .github/workflows/wheels.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 4963a148..6d51b84f 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -167,7 +167,7 @@ jobs: python-version: ${{ matrix.python-version }} - name: Install MacOS dependencies - if: startsWith(matrix.os, 'mac') + if: startsWith(runner.os, 'macos-') run: | brew install automake libtool ln -s /usr/local/bin/glibtoolize /usr/local/bin/libtoolize |