Skip to content

Commit 585b311

Browse files
author
isham
committed
fixed publish to use name
link: actions/upload-artifact#480 (comment)
1 parent 196171d commit 585b311

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

.github/workflows/publish.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,8 @@ jobs:
3434
- name: Upload Linux wheels
3535
uses: actions/upload-artifact@v4
3636
with:
37-
pattern: linux-wheels-*
37+
pattern: linux-wheels-${{ strategy.job-index }}
3838
path: wheelhouse/*
39-
merge-multiple: true
4039

4140
build-macos:
4241
runs-on: macos-latest
@@ -66,9 +65,8 @@ jobs:
6665
- name: Upload macOS wheels
6766
uses: actions/upload-artifact@v4
6867
with:
69-
pattern: macos-wheels-*
68+
pattern: macos-wheels-${{ strategy.job-index }}
7069
path: wheelhouse/*
71-
merge-multiple: true
7270

7371
build-windows:
7472
runs-on: windows-latest
@@ -98,9 +96,8 @@ jobs:
9896
- name: Upload Windows wheels
9997
uses: actions/upload-artifact@v4
10098
with:
101-
pattern: windows-wheels-*
99+
pattern: windows-wheels-${{ strategy.job-index }}
102100
path: wheelhouse/*
103-
merge-multiple: true
104101

105102
publish:
106103
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)