Skip to content

Commit 463e857

Browse files
committed
fixing upload/downlowd paths
1 parent da5a3a6 commit 463e857

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

.github/workflows/build_wheels.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,8 @@ jobs:
4141
env:
4242
CIBW_SKIP: "pp* *-manylinux_i686 *-manylinux_ppc64le *-manylinux_s390x *musllinux_*"
4343
uses: pypa/cibuildwheel@v2.20.0
44-
with:
45-
package-dir: .
46-
output-dir: ./wheelhouse
4744

4845
- uses: actions/upload-artifact@v4
4946
with:
50-
name: python-package-distributions
51-
path: dist/
47+
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
48+
path: ./wheelhouse/*.whl

.github/workflows/upload_testpypi.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,9 @@ jobs:
1818
- name: Download all the dists
1919
uses: actions/download-artifact@v3
2020
with:
21-
nname: python-package-distributions
22-
path: dist/
21+
pattern: cibw-* # download all the wheels
22+
path: dist
23+
merge-multiple: true
2324
- name: Publish distribution 📦 to TestPyPI
2425
uses: pypa/gh-action-pypi-publish@release/v1
2526
with:

0 commit comments

Comments
 (0)