Skip to content

Commit 1533a7f

Browse files
committed
Build: Add collective wheel archive and fix release upload.
1 parent 67e965e commit 1533a7f

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

.github/workflows/wheels.yml

+8-4
Original file line numberDiff line numberDiff line change
@@ -157,17 +157,21 @@ jobs:
157157
- name: Download bdist files
158158
uses: actions/download-artifact@6b208ae046db98c579e8a3aa621ab581ff575935 # v4.1.1
159159
with:
160-
path: ~/downloads
160+
path: ./bdist_downloads
161161
merge-multiple: true
162162

163163
- name: List downloaded artifacts
164-
run: ls -la ~/downloads
164+
run: ls -la ./bdist_downloads
165+
166+
- uses: actions/upload-artifact@694cdabd8bdb0f10b2cea11669e1bf5453eed0a6 # v4.2.0
167+
with:
168+
path: ./bdist_downloads/*.whl
169+
name: wheels
165170

166171
- name: Release
167172
uses: softprops/action-gh-release@v1
168173
with:
169-
files: ~/downloads/*.whl
170-
174+
files: ./bdist_downloads/*.whl
171175

172176
Linux:
173177
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)