We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b6ee0c7 commit 8b73d66Copy full SHA for 8b73d66
1 file changed
.github/workflows/CI.yml
@@ -38,15 +38,10 @@ jobs:
38
file $(which python) || true # macOS/Windows compatible
39
uname -a || systeminfo # Platform info
40
- name: Build wheel
41
- uses: messense/maturin-action@v1
+ uses: PyO3/maturin-action@v1
42
with:
43
- manylinux: auto
44
command: build
45
- args: >-
46
- --release
47
- -o dist
48
- --interpreter python
49
- ${{ matrix.os == 'ubuntu-latest' && '--sdist' || '' }}
+ args: --release -o dist --find-interpreter
50
- name: List wheels
51
run: ls -l dist/
52
- name: Install wheel
@@ -79,7 +74,7 @@ jobs:
79
74
mkdir dist
80
75
cp artifacts/wheels-*/* dist/
81
76
- name: Publish to PyPI
82
77
83
78
env:
84
MATURIN_PYPI_TOKEN: ${{ secrets.PYPI_API_TOKEN }}
85
0 commit comments