Skip to content

Commit 54217f7

Browse files
committed
update for action API change
1 parent ce81b3b commit 54217f7

2 files changed

Lines changed: 6 additions & 3 deletions

File tree

.github/workflows/push.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,4 @@ jobs:
3232
- uses: actions/upload-artifact@v4
3333
with:
3434
path: ./wheelhouse/*.whl
35+
name: wheels-${{ matrix.runs-on }}

.github/workflows/release.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ jobs:
1919
- uses: actions/upload-artifact@v4
2020
with:
2121
path: ./wheelhouse/*.whl
22+
name: wheels-${{ matrix.runs-on }}
2223

2324
upload_pypi:
2425
name: Release To PyPi
@@ -33,9 +34,9 @@ jobs:
3334

3435
- uses: actions/download-artifact@v4
3536
with:
36-
name: artifact
3737
path: dist
38-
38+
pattern: wheels-*
39+
merge-multiple: true
3940
- uses: pypa/gh-action-pypi-publish@v1.8.10
4041

4142
create_release:
@@ -54,8 +55,9 @@ jobs:
5455
echo "tag_name=${VER}" >> $GITHUB_OUTPUT
5556
- uses: actions/download-artifact@v3
5657
with:
57-
name: artifact
5858
path: dist
59+
pattern: wheels-*
60+
merge-multiple: true
5961
- uses: ncipollo/release-action@v1.14.0
6062
with:
6163
artifacts: "dist/*"

0 commit comments

Comments
 (0)