Skip to content

Commit 215828c

Browse files
authored
Fix github action failure to release (#799)
1 parent bcac165 commit 215828c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/cibuildwheel.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,9 @@ jobs:
6464
env:
6565
MACOSX_DEPLOYMENT_TARGET: "10.9"
6666

67-
- uses: actions/upload-artifact@v3
67+
- uses: actions/upload-artifact@v4
6868
with:
69-
name: wheelhouse
69+
name: wheelhouse-${{ runner.os }}
7070
path: ./wheelhouse/*.whl
7171

7272
################################################################################
@@ -87,12 +87,12 @@ jobs:
8787
- name: Download wheelhouse
8888
uses: actions/download-artifact@v4
8989
with:
90-
name: wheelhouse
90+
pattern: wheelhouse-*
9191
path: wheelhouse
9292
merge-multiple: true
9393

9494
- name: Publish to GitHub Releases
95-
uses: softprops/action-gh-release@v1
95+
uses: softprops/action-gh-release@v2
9696
with:
9797
files: wheelhouse/*.whl
9898
fail_on_unmatched_files: true
@@ -119,7 +119,7 @@ jobs:
119119
- name: Download wheelhouse
120120
uses: actions/download-artifact@v4
121121
with:
122-
name: wheelhouse
122+
pattern: wheelhouse-*
123123
path: wheelhouse
124124
merge-multiple: true
125125

0 commit comments

Comments
 (0)