omit --no-sdist

This commit is contained in:
Max
2023-01-28 21:12:21 +01:00
parent 984b899088
commit 493d836f96
+4 -4
View File
@@ -30,7 +30,7 @@ jobs:
uses: PyO3/maturin-action@v1
with:
target: x86_64
args: --release --out dist
args: --release --out dist --sdist
- name: Install built wheel - x86_64
run: |
@@ -40,7 +40,7 @@ jobs:
- name: Build wheels - universal2
uses: PyO3/maturin-action@v1
with:
args: --release --universal2 --out dist --no-sdist
args: --release --universal2 --out dist
- name: Install built wheel - universal2
run: |
@@ -79,7 +79,7 @@ jobs:
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.target }}
args: --release --out dist --no-sdist
args: --release --out dist
- name: Install built wheel
run: |
@@ -112,7 +112,7 @@ jobs:
with:
target: ${{ matrix.target }}
manylinux: auto
args: --release --out dist --no-sdist
args: --release --out dist
- name: Install built wheel
if: matrix.target == 'x86_64'