From 5e3e8d13b480b886536b0aaa656e3cf77149c291 Mon Sep 17 00:00:00 2001 From: Vu Anh Date: Sun, 9 Jun 2024 11:49:20 +0000 Subject: [PATCH] update --- .github/workflows/release-pypi-core.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release-pypi-core.yml b/.github/workflows/release-pypi-core.yml index 2b9ec2a2..bdd01e1b 100644 --- a/.github/workflows/release-pypi-core.yml +++ b/.github/workflows/release-pypi-core.yml @@ -70,7 +70,7 @@ jobs: env: MATURIN_PASSWORD: ${{ secrets.PYPI_UNDERTHESEA_CORE_API_TOKEN }} run: | - $PYTHON -m poetry run maturin build --release --strip --interpreter python${{ matrix.python-version }} + $PYTHON -m poetry run maturin build --release --strip --only-binary --interpreter python${{ matrix.python-version }} find ./target/wheels/ $PYTHON -m poetry run maturin publish --username __token__ --interpreter python${{ matrix.python-version }} windows: @@ -105,7 +105,7 @@ jobs: env: MATURIN_PASSWORD: ${{ secrets.PYPI_UNDERTHESEA_CORE_API_TOKEN }} run: | - poetry run maturin build --release --strip --interpreter python + poetry run maturin build --release --strip --interpreter --only-binary python dir target\wheels\ poetry run maturin publish --username __token__ --interpreter python macos-x64: @@ -141,7 +141,7 @@ jobs: env: MATURIN_PASSWORD: ${{ secrets.PYPI_UNDERTHESEA_CORE_API_TOKEN }} run: | - poetry run maturin build --release --strip --interpreter python${{ matrix.python-version }} + poetry run maturin build --release --strip --interpreter --only-binary python${{ matrix.python-version }} find ./target/wheels/ pip install target/wheels/underthesea_core*.whl poetry run maturin publish --username __token__ --interpreter python${{ matrix.python-version }} @@ -171,6 +171,6 @@ jobs: run: | export PATH="${PWD}/poetry/bin:${PATH}" $PYTHON --version - poetry run maturin build --release --strip --interpreter $PYTHON + poetry run maturin build --release --strip --interpreter --only-binary $PYTHON find ./target/wheels/ poetry run maturin publish --username __token__ --interpreter $PYTHON \ No newline at end of file