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