Skip to content

Commit 2ba869e

Browse files
author
Gal Ben David
committed
Fix deploy CD workflow
1 parent b3150a9 commit 2ba869e

File tree

1 file changed

+4
-14
lines changed

1 file changed

+4
-14
lines changed

.github/workflows/deploy.yml

Lines changed: 4 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -23,23 +23,13 @@ jobs:
2323
profile: minimal
2424
toolchain: stable
2525
override: true
26-
- name: Publish Package
26+
- name: Build & Publish to PyPi
2727
if: matrix.os != 'windows-latest'
28-
uses: messense/maturin-action@v1
29-
with:
30-
maturin-version: latest
31-
command: publish
32-
manylinux: 2014
33-
args: --username=__token__ --no-sdist --interpreter=python${{ matrix.python-version }}
28+
run: maturin publish --username __token__ --no-sdist --interpreter python${{ matrix.python-version }} --manylinux=2014 --skip-auditwheel
3429
env:
3530
MATURIN_PASSWORD: ${{ secrets.pypi_password }}
36-
- name: Publish Package
31+
- name: Build & Publish to PyPi
3732
if: matrix.os == 'windows-latest'
38-
uses: messense/maturin-action@v1
39-
with:
40-
maturin-version: latest
41-
command: publish
42-
manylinux: 2014
43-
args: --username=__token__ --no-sdist --interpreter=python
33+
run: maturin publish --username=__token__ --no-sdist --interpreter=python --manylinux=2014 --skip-auditwheel
4434
env:
4535
MATURIN_PASSWORD: ${{ secrets.pypi_password }}

0 commit comments

Comments
 (0)