From 3cbad9556a7abfac553717f8f71d87b96490187a Mon Sep 17 00:00:00 2001 From: lazymio Date: Wed, 6 Oct 2021 11:07:55 +0200 Subject: [PATCH] Fix name typo --- .github/workflows/PyPI-publishing.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/PyPI-publishing.yml b/.github/workflows/PyPI-publishing.yml index 63d98e90..2a3fd208 100644 --- a/.github/workflows/PyPI-publishing.yml +++ b/.github/workflows/PyPI-publishing.yml @@ -76,11 +76,11 @@ jobs: if [ ${{ matrix.config.name }} == 'win32' ]; then cd bindings/python && python setup.py build -p win32 sdist bdist_wheel -p win32 rm dist/*.tar.gz - elif [ ${{ matrix.config.name }} == 'manylinux1_i686' ]; then + elif [ ${{ matrix.config.name }} == 'manylinux2014_i686' ]; then docker run --rm -v `pwd`/:/work dockcross/manylinux2014-x86 > ./dockcross chmod +x ./dockcross ./dockcross bindings/python/build_wheel.sh - elif [ ${{ matrix.config.name }} == 'manylinux1_x86_64' ]; then + elif [ ${{ matrix.config.name }} == 'manylinux2014_x86_64' ]; then docker run --rm -v `pwd`/:/work dockcross/manylinux2014-x64 > ./dockcross chmod +x ./dockcross ./dockcross bindings/python/build_wheel.sh