From 0cb29c710e929ba353dae7d79e680837bb9ea09e Mon Sep 17 00:00:00 2001 From: Jens Reidel Date: Fri, 26 Feb 2021 12:17:45 +0100 Subject: [PATCH] Fix maturin options --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 61e57a7..582dae0 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -13,4 +13,4 @@ jobs: - name: Build manylinux Python wheels run: | docker build -t maturin:latest . - docker run --rm -v $(pwd):/io maturin:latest publish --no-sdist --release --strip --manylinux 2010 --username ${{ secrets.PYPI_USERNAME }} --password ${{ secrets.PYPI_PASSWORD }} + docker run --rm -v $(pwd):/io maturin:latest publish --no-sdist --manylinux 2010 --username ${{ secrets.PYPI_USERNAME }} --password ${{ secrets.PYPI_PASSWORD }}