Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
rain1024 committed Jun 9, 2024
1 parent 82c0d89 commit 5e3e8d1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release-pypi-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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:
Expand Down Expand Up @@ -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 }}
Expand Down Expand Up @@ -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

0 comments on commit 5e3e8d1

Please sign in to comment.