We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ade8b35 commit aabeec2Copy full SHA for aabeec2
.github/workflows/test-and-deploy.yml
@@ -209,17 +209,22 @@ jobs:
209
210
- name: Move wheelhouse wheel files to dist
211
run: |
212
+ rm dist/*
213
mv wheelhouse/* dist/
214
rmdir wheelhouse
215
216
- name: List contents of dist
217
run: ls -R dist
218
219
+ - name: Get the name of the wheel file
220
+ id: get-wheel-name
221
+ run: echo "::set-output name=wheel-name::$(ls dist/*.whl)"
222
+
223
- name: Archive build artifacts
224
uses: actions/upload-artifact@v1
225
with:
226
name: dist-artifacts-manylinux-${{ matrix.python }}
- path: dist/*
227
+ path: ${{ steps.get-wheel-name.outputs.wheel-name }}
228
229
deploy-test:
230
runs-on: ubuntu-latest
0 commit comments