mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-04-25 12:56:22 +02:00
github actions: try to not use direct path
This commit is contained in:
parent
ade8b351de
commit
aabeec2a74
1 changed files with 6 additions and 1 deletions
7
.github/workflows/test-and-deploy.yml
vendored
7
.github/workflows/test-and-deploy.yml
vendored
|
|
@ -209,17 +209,22 @@ jobs:
|
|||
|
||||
- name: Move wheelhouse wheel files to dist
|
||||
run: |
|
||||
rm dist/*
|
||||
mv wheelhouse/* dist/
|
||||
rmdir wheelhouse
|
||||
|
||||
- name: List contents of dist
|
||||
run: ls -R dist
|
||||
|
||||
- name: Get the name of the wheel file
|
||||
id: get-wheel-name
|
||||
run: echo "::set-output name=wheel-name::$(ls dist/*.whl)"
|
||||
|
||||
- name: Archive build artifacts
|
||||
uses: actions/upload-artifact@v1
|
||||
with:
|
||||
name: dist-artifacts-manylinux-${{ matrix.python }}
|
||||
path: dist/*
|
||||
path: ${{ steps.get-wheel-name.outputs.wheel-name }}
|
||||
|
||||
deploy-test:
|
||||
runs-on: ubuntu-latest
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue