FIX: Fix CI script to deal with conflicting names
This commit is contained in:
committed by
Nicolás Hatcher Andrés
parent
5c13f241c6
commit
25bb1ab8dc
14
.github/workflows/pypi.yml
vendored
14
.github/workflows/pypi.yml
vendored
@@ -34,7 +34,7 @@ jobs:
|
|||||||
- name: Upload wheels
|
- name: Upload wheels
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: wheels
|
name: wheels-${{ runner.os }}-${{ matrix.target }}
|
||||||
path: bindings/python/dist
|
path: bindings/python/dist
|
||||||
|
|
||||||
windows:
|
windows:
|
||||||
@@ -58,7 +58,7 @@ jobs:
|
|||||||
- name: Upload wheels
|
- name: Upload wheels
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: wheels
|
name: wheels-${{ runner.os }}-${{ matrix.target }}
|
||||||
path: bindings/python/dist
|
path: bindings/python/dist
|
||||||
|
|
||||||
macos:
|
macos:
|
||||||
@@ -81,7 +81,7 @@ jobs:
|
|||||||
- name: Upload wheels
|
- name: Upload wheels
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: wheels
|
name: wheels-${{ runner.os }}-${{ matrix.target }}
|
||||||
path: bindings/python/dist
|
path: bindings/python/dist
|
||||||
|
|
||||||
sdist:
|
sdist:
|
||||||
@@ -97,7 +97,7 @@ jobs:
|
|||||||
- name: Upload sdist
|
- name: Upload sdist
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: wheels
|
name: wheels-${{ runner.os }}-sdist
|
||||||
path: bindings/python/dist
|
path: bindings/python/dist
|
||||||
|
|
||||||
publish-to-test-pypi:
|
publish-to-test-pypi:
|
||||||
@@ -107,9 +107,8 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: [linux, windows, macos, sdist]
|
needs: [linux, windows, macos, sdist]
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/download-artifact@v3
|
- uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: wheels
|
|
||||||
path: bindings/python/
|
path: bindings/python/
|
||||||
- name: Publish distribution 📦 to Test PyPI
|
- name: Publish distribution 📦 to Test PyPI
|
||||||
uses: PyO3/maturin-action@v1
|
uses: PyO3/maturin-action@v1
|
||||||
@@ -128,9 +127,8 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: [linux, windows, macos, sdist]
|
needs: [linux, windows, macos, sdist]
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/download-artifact@v3
|
- uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: wheels
|
|
||||||
path: bindings/python/
|
path: bindings/python/
|
||||||
- name: Publish distribution 📦 to PyPI
|
- name: Publish distribution 📦 to PyPI
|
||||||
uses: PyO3/maturin-action@v1
|
uses: PyO3/maturin-action@v1
|
||||||
|
|||||||
Reference in New Issue
Block a user