You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/build.yml
+9-13Lines changed: 9 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -77,9 +77,9 @@ jobs:
77
77
python3 -c "import shutil; import glob; wheels = glob.glob('dist/*.whl'); [shutil.move(wheel, wheel.replace('py3', 'py2.py3')) for wheel in wheels if 'py2' not in wheel]"
78
78
if: runner.os != 'Linux'
79
79
- name: Upload wheels
80
-
uses: actions/upload-artifact@v3
80
+
uses: actions/upload-artifact@v4
81
81
with:
82
-
name: wheels
82
+
name: "wheel-${{matrix.os}}"
83
83
path: dist
84
84
if: runner.os != 'Linux'
85
85
@@ -120,9 +120,9 @@ jobs:
120
120
run: |
121
121
python3 -c "import shutil; import glob; wheels = glob.glob('dist/*.whl'); [shutil.move(wheel, wheel.replace('py3', 'py2.py3')) for wheel in wheels if 'py2' not in wheel]"
0 commit comments