We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 196171d commit 585b311Copy full SHA for 585b311
.github/workflows/publish.yml
@@ -34,9 +34,8 @@ jobs:
34
- name: Upload Linux wheels
35
uses: actions/upload-artifact@v4
36
with:
37
- pattern: linux-wheels-*
+ pattern: linux-wheels-${{ strategy.job-index }}
38
path: wheelhouse/*
39
- merge-multiple: true
40
41
build-macos:
42
runs-on: macos-latest
@@ -66,9 +65,8 @@ jobs:
66
65
- name: Upload macOS wheels
67
68
69
- pattern: macos-wheels-*
+ pattern: macos-wheels-${{ strategy.job-index }}
70
71
72
73
build-windows:
74
runs-on: windows-latest
@@ -98,9 +96,8 @@ jobs:
98
96
- name: Upload Windows wheels
99
97
100
101
- pattern: windows-wheels-*
+ pattern: windows-wheels-${{ strategy.job-index }}
102
103
104
105
publish:
106
runs-on: ubuntu-latest
0 commit comments