Skip to content

Commit 8923861

Browse files
committed
fix(wheel): update artifact to v4.
check more info: https://github.blog/changelog/2024-04-16-deprecation-notice-v3-of-the-artifact-actions/ fix(wheel): based on this comment: actions/upload-artifact#480 (comment)
1 parent 03603ad commit 8923861

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/Wheels.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,9 @@ jobs:
3838
shell: bash
3939

4040
- name: Upload wheels
41-
uses: actions/upload-artifact@v3
41+
uses: actions/upload-artifact@v4
4242
with:
43+
name: my-artifacts-${{ strategy.job-index }}
4344
path: wheelhouse/*.whl
4445

4546
upload_all:
@@ -52,9 +53,10 @@ jobs:
5253
- uses: actions/setup-python@v4
5354

5455
- name: Download Wheels artifact
55-
uses: actions/download-artifact@v3
56+
uses: actions/download-artifact@v4
5657
with:
57-
name: artifact
58+
pattern: my-artifacts-*
59+
merge-multiple: true
5860
path: wheelhouse
5961

6062
# - uses: pypa/gh-action-pypi-publish@release/v1

0 commit comments

Comments
 (0)