We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 67e965e commit 1533a7fCopy full SHA for 1533a7f
.github/workflows/wheels.yml
@@ -157,17 +157,21 @@ jobs:
157
- name: Download bdist files
158
uses: actions/download-artifact@6b208ae046db98c579e8a3aa621ab581ff575935 # v4.1.1
159
with:
160
- path: ~/downloads
+ path: ./bdist_downloads
161
merge-multiple: true
162
163
- name: List downloaded artifacts
164
- run: ls -la ~/downloads
+ 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
170
171
- name: Release
172
uses: softprops/action-gh-release@v1
173
- files: ~/downloads/*.whl
-
174
+ files: ./bdist_downloads/*.whl
175
176
Linux:
177
runs-on: ubuntu-latest
0 commit comments