Skip to content

Commit d848d09

Browse files
authored
Merge pull request #108 from matthewdcong/bugfix/force_overwrite_artifacts
Increase verbosity and disambiguate artifact names
2 parents 647782d + 459f00f commit d848d09

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/build-wheels-and-publish-to-pipy.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,12 @@ jobs:
3535
CIBW_BEFORE_BUILD_LINUX: yum -y install gcc-gfortran lapack-devel blas-devel
3636
CIBW_ARCHS_LINUX: "auto"
3737
CIBW_REPAIR_WHEEL_COMMAND_MACOS: "" # delocate-listdeps --all {wheel} && delocate-wheel --require-archs {delocate_archs} -w {dest_dir} -v {wheel}
38+
CIBW_BUILD_VERBOSITY: 1
3839
# CIBW_ARCHS_MACOS: "x86_64 universal2 arm64"
3940
uses: pypa/[email protected]
4041
- uses: actions/upload-artifact@v4
4142
with:
43+
name: cibw-wheels-${{ matrix.os }}-${{ matrix.cibw_archs }}-${{ strategy.job-index }}
4244
path: ./wheelhouse/*.whl
4345

4446
build_sdist:
@@ -52,6 +54,7 @@ jobs:
5254

5355
- uses: actions/upload-artifact@v4
5456
with:
57+
name: cibw-sdist
5558
path: dist/*.tar.gz
5659

5760
upload_pypi:
@@ -64,8 +67,9 @@ jobs:
6467
steps:
6568
- uses: actions/[email protected]
6669
with:
67-
name: artifact
70+
name: cibw-*
6871
path: dist
72+
merge-multiple: true
6973

7074
- uses: pypa/[email protected]
7175
with:

0 commit comments

Comments
 (0)