Skip to content

Commit 323adef

Browse files
committed
Migrate to actions/upload-artifact@v4.
The version number was increased without accounting for backwards-incompatible changes.
1 parent f9c20d0 commit 323adef

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ jobs:
2626
- name: Save sdist & wheel
2727
uses: actions/upload-artifact@v4
2828
with:
29+
name: dist-architecture-independent
2930
path: |
3031
dist/*.tar.gz
3132
dist/*.whl
@@ -58,6 +59,7 @@ jobs:
5859
- name: Save wheels
5960
uses: actions/upload-artifact@v4
6061
with:
62+
name: dist-${{ matrix.os }}
6163
path: wheelhouse/*.whl
6264

6365
upload:
@@ -74,7 +76,8 @@ jobs:
7476
- name: Download artifacts
7577
uses: actions/download-artifact@v4
7678
with:
77-
name: artifact
79+
pattern: dist-*
80+
merge-multiple: true
7881
path: dist
7982
- name: Upload to PyPI
8083
uses: pypa/gh-action-pypi-publish@release/v1

0 commit comments

Comments
 (0)